.PHONY: check clean

SPLINT = splint
 
check:
	$(SPLINT) -systemdirs $(CURDIR)/include main.c +skip-posix-headers +posix-lib

