diff --git a/lib/roken/base64-test.c b/lib/roken/base64-test.c index e247884fd..69e73ae77 100644 --- a/lib/roken/base64-test.c +++ b/lib/roken/base64-test.c @@ -36,7 +36,7 @@ RCSID("$Id$"); #endif -#include +#include "roken.h" #include int diff --git a/lib/roken/closefrom.c b/lib/roken/closefrom.c index 19413d873..8bf99f860 100644 --- a/lib/roken/closefrom.c +++ b/lib/roken/closefrom.c @@ -43,7 +43,7 @@ RCSID("$Id$"); #include #endif -#include +#include "roken.h" int ROKEN_LIB_FUNCTION closefrom(int fd) diff --git a/lib/roken/dumpdata.c b/lib/roken/dumpdata.c index 41fb54328..6b61581cc 100644 --- a/lib/roken/dumpdata.c +++ b/lib/roken/dumpdata.c @@ -38,7 +38,7 @@ RCSID("$Id$"); #include -#include +#include "roken.h" /* * Write datablob to a filename, don't care about errors. diff --git a/lib/roken/ecalloc.c b/lib/roken/ecalloc.c index d0439d361..767d38387 100644 --- a/lib/roken/ecalloc.c +++ b/lib/roken/ecalloc.c @@ -39,7 +39,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" /* * Like calloc but never fails. diff --git a/lib/roken/emalloc.c b/lib/roken/emalloc.c index 8b8e1f8f7..2384f4c1c 100644 --- a/lib/roken/emalloc.c +++ b/lib/roken/emalloc.c @@ -39,7 +39,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" /* * Like malloc but never fails. diff --git a/lib/roken/eread.c b/lib/roken/eread.c index d370b40f5..134807c10 100644 --- a/lib/roken/eread.c +++ b/lib/roken/eread.c @@ -39,7 +39,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" /* * Like read but never fails (and never returns partial data). diff --git a/lib/roken/erealloc.c b/lib/roken/erealloc.c index d684481da..596f4c6be 100644 --- a/lib/roken/erealloc.c +++ b/lib/roken/erealloc.c @@ -39,7 +39,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" /* * Like realloc but never fails. diff --git a/lib/roken/estrdup.c b/lib/roken/estrdup.c index 0c6200c4b..541bb7a33 100644 --- a/lib/roken/estrdup.c +++ b/lib/roken/estrdup.c @@ -39,7 +39,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" /* * Like strdup but never fails. diff --git a/lib/roken/ewrite.c b/lib/roken/ewrite.c index d58ceb563..c5f6d7ce7 100644 --- a/lib/roken/ewrite.c +++ b/lib/roken/ewrite.c @@ -39,7 +39,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" /* * Like write but never fails (and never returns partial data). diff --git a/lib/roken/get_window_size.c b/lib/roken/get_window_size.c index 053e7e4f8..f75b42e2f 100644 --- a/lib/roken/get_window_size.c +++ b/lib/roken/get_window_size.c @@ -58,7 +58,7 @@ RCSID("$Id$"); #include #endif -#include +#include "roken.h" int ROKEN_LIB_FUNCTION get_window_size(int fd, struct winsize *wp) diff --git a/lib/roken/getarg.c b/lib/roken/getarg.c index 4455e9f1e..bd04bf5c2 100644 --- a/lib/roken/getarg.c +++ b/lib/roken/getarg.c @@ -39,7 +39,7 @@ RCSID("$Id$"); #include #include #include -#include +#include "roken.h" #include "getarg.h" #define ISFLAG(X) ((X).type == arg_flag || (X).type == arg_negative_flag) diff --git a/lib/roken/getusershell.c b/lib/roken/getusershell.c index 283bae294..00d5eb0e8 100644 --- a/lib/roken/getusershell.c +++ b/lib/roken/getusershell.c @@ -59,7 +59,7 @@ struct aud_rec; #ifdef HAVE_USERCONF_H #include #endif -#include +#include "roken.h" #ifndef _PATH_SHELLS #define _PATH_SHELLS "/etc/shells" diff --git a/lib/roken/hex-test.c b/lib/roken/hex-test.c index f3c7b5346..b9f330f56 100644 --- a/lib/roken/hex-test.c +++ b/lib/roken/hex-test.c @@ -37,7 +37,7 @@ RCSID("$Id$"); #endif -#include +#include "roken.h" #include int diff --git a/lib/roken/inet_ntop.c b/lib/roken/inet_ntop.c index 997e81245..f2d81d93a 100644 --- a/lib/roken/inet_ntop.c +++ b/lib/roken/inet_ntop.c @@ -36,7 +36,7 @@ RCSID("$Id$"); #endif -#include +#include "roken.h" /* * diff --git a/lib/roken/inet_pton.c b/lib/roken/inet_pton.c index 2ba8419df..e55630aea 100644 --- a/lib/roken/inet_pton.c +++ b/lib/roken/inet_pton.c @@ -36,7 +36,7 @@ RCSID("$Id$"); #endif -#include +#include "roken.h" int ROKEN_LIB_FUNCTION inet_pton(int af, const char *src, void *dst) diff --git a/lib/roken/net_read.c b/lib/roken/net_read.c index 9bbe24a2c..f1c96d116 100644 --- a/lib/roken/net_read.c +++ b/lib/roken/net_read.c @@ -40,7 +40,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" /* * Like read but never return partial data. diff --git a/lib/roken/net_write.c b/lib/roken/net_write.c index 8805354b5..e557332a7 100644 --- a/lib/roken/net_write.c +++ b/lib/roken/net_write.c @@ -40,7 +40,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" /* * Like write but never return partial data. diff --git a/lib/roken/parse_units.c b/lib/roken/parse_units.c index f94bd8e07..a68cb247f 100644 --- a/lib/roken/parse_units.c +++ b/lib/roken/parse_units.c @@ -39,7 +39,7 @@ RCSID("$Id$"); #include #include #include -#include +#include "roken.h" #include "parse_units.h" /* diff --git a/lib/roken/roken_gethostby.c b/lib/roken/roken_gethostby.c index 2ee685ce3..8bc6f6b80 100644 --- a/lib/roken/roken_gethostby.c +++ b/lib/roken/roken_gethostby.c @@ -36,7 +36,7 @@ RCSID("$Id$"); #endif -#include +#include "roken.h" #undef roken_gethostbyname #undef roken_gethostbyaddr diff --git a/lib/roken/simple_exec.c b/lib/roken/simple_exec.c index 9cc33e754..e45ba6b6b 100644 --- a/lib/roken/simple_exec.c +++ b/lib/roken/simple_exec.c @@ -49,7 +49,7 @@ RCSID("$Id$"); #endif #include -#include +#include "roken.h" #define EX_NOEXEC 126 #define EX_NOTFOUND 127 diff --git a/lib/roken/snprintf.c b/lib/roken/snprintf.c index a2a936ca9..eb70c33df 100644 --- a/lib/roken/snprintf.c +++ b/lib/roken/snprintf.c @@ -43,7 +43,7 @@ RCSID("$Id$"); #include #include #include -#include +#include "roken.h" #include enum format_flags { diff --git a/lib/roken/socket.c b/lib/roken/socket.c index 2acc1fbc1..61e3fe1f6 100644 --- a/lib/roken/socket.c +++ b/lib/roken/socket.c @@ -36,7 +36,7 @@ RCSID("$Id$"); #endif -#include +#include "roken.h" #include /* diff --git a/lib/roken/socket_wrapper.c b/lib/roken/socket_wrapper.c index f27a39b15..db970311c 100644 --- a/lib/roken/socket_wrapper.c +++ b/lib/roken/socket_wrapper.c @@ -88,7 +88,7 @@ #include #include #include -#include +#include "roken.h" #include "socket_wrapper.h" diff --git a/lib/roken/strcollect.c b/lib/roken/strcollect.c index ad08f3ba4..e17befd00 100644 --- a/lib/roken/strcollect.c +++ b/lib/roken/strcollect.c @@ -40,7 +40,7 @@ RCSID("$Id$"); #include #include #include -#include +#include "roken.h" enum { initial = 10, increment = 5 }; diff --git a/lib/roken/strlwr.c b/lib/roken/strlwr.c index e74f1c12c..121424115 100644 --- a/lib/roken/strlwr.c +++ b/lib/roken/strlwr.c @@ -38,7 +38,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" #ifndef HAVE_STRLWR char * ROKEN_LIB_FUNCTION diff --git a/lib/roken/strndup.c b/lib/roken/strndup.c index cf34051f9..95dd4ef2e 100644 --- a/lib/roken/strndup.c +++ b/lib/roken/strndup.c @@ -38,7 +38,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" #ifndef HAVE_STRNDUP char * ROKEN_LIB_FUNCTION diff --git a/lib/roken/strpool.c b/lib/roken/strpool.c index b4dde03ee..9b8697089 100644 --- a/lib/roken/strpool.c +++ b/lib/roken/strpool.c @@ -38,7 +38,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" struct rk_strpool { char *str; diff --git a/lib/roken/strupr.c b/lib/roken/strupr.c index 4dc06676a..b40b768be 100644 --- a/lib/roken/strupr.c +++ b/lib/roken/strupr.c @@ -38,7 +38,7 @@ RCSID("$Id$"); #include #include -#include +#include "roken.h" #ifndef HAVE_STRUPR char * ROKEN_LIB_FUNCTION diff --git a/lib/roken/test-mem.c b/lib/roken/test-mem.c index 42bfe7c57..1edb718a5 100644 --- a/lib/roken/test-mem.c +++ b/lib/roken/test-mem.c @@ -40,7 +40,7 @@ #include #include #include -#include +#include "roken.h" #include "test-mem.h" diff --git a/lib/roken/unvis.c b/lib/roken/unvis.c index 2add8730e..ab907bb80 100644 --- a/lib/roken/unvis.c +++ b/lib/roken/unvis.c @@ -34,7 +34,7 @@ #include RCSID("$Id$"); #endif -#include +#include "roken.h" #ifndef _DIAGASSERT #define _DIAGASSERT(X) #endif diff --git a/lib/roken/vis.c b/lib/roken/vis.c index 55a4d76c6..40af7c3be 100644 --- a/lib/roken/vis.c +++ b/lib/roken/vis.c @@ -67,7 +67,7 @@ #include RCSID("$Id$"); #endif -#include +#include "roken.h" #ifndef _DIAGASSERT #define _DIAGASSERT(X) #endif diff --git a/lib/roken/write_pid.c b/lib/roken/write_pid.c index 5e4cf2369..c8296e441 100644 --- a/lib/roken/write_pid.c +++ b/lib/roken/write_pid.c @@ -39,7 +39,7 @@ RCSID("$Id$"); #include #include #include -#include +#include "roken.h" #include "roken.h"