diff options
| author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-03-27 19:09:44 +0200 | 
|---|---|---|
| committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-03-27 19:09:44 +0200 | 
| commit | 89d4aece7ba679703060393ac95086fd514c7fc7 (patch) | |
| tree | 97a65ea066b664fba80e66cb064b725441918aac | |
| parent | e6765bd363d2dd1dcaeeae5117cc25aae53fb944 (diff) | |
| download | posixtz-master.tar.bz2 posixtz-master.tar.xz | |
string.h is needed for strncmp(3) and unistd.h is needed for read(3),
close(3) and lseek(3).
| -rw-r--r-- | posixtz.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -14,6 +14,8 @@  #include <fcntl.h>  #include <limits.h>  #include <stdio.h> +#include <string.h> +#include <unistd.h>  #include "posixtz.h" | 
