Compare commits

..

No commits in common. "3bf4f854c767282d47bdb28b22d1f3517b100f36" and "250db2c90f2bb18cf7105f8dbab80894a8595c67" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ CFLAGS := -Wall -Wextra -Werror -Os
$(APPS_BIN)/%: $(APPS_SRC)/%.c
@mkdir -p $(@D)
$(CC) $(CFLAGS) -o $@ $^
$(STRIP) $@
build: $(REAL_APPS)

View File

@ -168,5 +168,5 @@ int main()
printf("Success!! Got PID %ld\n", child);
return 0;
return 1;
}