diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 18:30:58 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 18:30:58 -0400 |
commit | 88ee7e197314ed310e07ce0cca59742087b02114 (patch) | |
tree | 88b3d3059c346a668880148c73f3d1c0c90e96d7 | |
parent | 5756352383087295b5bb5aea5c0dbaa7354ef3bd (diff) |
add missing header to compile targetting POSIX
-rw-r--r-- | src/stdlib/abort.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stdlib/abort.c b/src/stdlib/abort.c index f12f8276..3debab2c 100644 --- a/src/stdlib/abort.c +++ b/src/stdlib/abort.c @@ -1,4 +1,5 @@ #include <stdlib.h> +#include <sys/types.h> #include <signal.h> /** cause abnormal program termination **/ |