summaryrefslogtreecommitdiff
path: root/src/os.h
diff options
context:
space:
mode:
authorSimon Ruderich <simon@ruderich.org>2016-02-07 16:35:00 +0100
committerAmadeusz Sławiński <amade@asmblr.net>2016-02-07 17:57:37 +0100
commit263d9c6c8d490b2018c7c02dfb168897270286c1 (patch)
tree7c0feffb645a4bc69a97af774aba2a8d353fa575 /src/os.h
parent42745c6ac1d803cfc92291e5b18d982aacf8dc4f (diff)
downloadscreen-263d9c6c8d490b2018c7c02dfb168897270286c1.tar.gz
make all header files self-contained and include it in the source file
Including the header in the source file guarantees matching signatures, thus preventing subtle errors. Self-contained headers document the required headers and makes using it easier to use the header in new source files.
Diffstat (limited to 'src/os.h')
-rw-r--r--src/os.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/os.h b/src/os.h
index 1a9402d..9ebd938 100644
--- a/src/os.h
+++ b/src/os.h
@@ -27,9 +27,12 @@
* $Id$ GNU
*/
+#include "config.h"
+
#include <stdio.h>
#include <errno.h>
#include <sys/param.h>
+#include <fcntl.h>
#include <limits.h>