diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-12-10 01:12:51 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-12-10 01:12:51 -0500 |
commit | 8dce2a75c188b02ff64561a4f25064f61f2353b8 (patch) | |
tree | 65daa5f7103f75867f63ce763e982cfeffa83270 | |
parent | c795af7555eaf6f7ff554447e5d131734300b318 (diff) | |
download | stasis-8dce2a75c188b02ff64561a4f25064f61f2353b8.tar.gz |
Include time (everywhere)
-rw-r--r-- | include/omc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/omc.h b/include/omc.h index 2215f6e..bad0939 100644 --- a/include/omc.h +++ b/include/omc.h @@ -1,10 +1,12 @@ #ifndef OMC_OMC_H #define OMC_OMC_H + #include <stdio.h> #include <stdlib.h> #include <string.h> #include <limits.h> #include <unistd.h> +#include <time.h> #define SYSERROR stderr, "%s:%s:%d: %s\n", path_basename(__FILE__), __FUNCTION__, __LINE__, strerror(errno) #define OMC_BUFSIZ 8192 |