diff options
author | Omar Polo <op@omarpolo.com> | 2023-06-23 22:40:09 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-06-23 22:40:09 +0000 |
commit | 2d0a2b21f51ba91803ec24b54f0a7d1fcfe10451 (patch) | |
tree | 47269f7e2fcc74f4d434b6744fa64071b973c065 /compat/getdtablesize.c | |
parent | 51340784148099697642da6252048a266f227d8e (diff) |
add missing include of ../config.h in regress/*.c
otherwise we get a nice 'no previous prototype' due to
-Wmissing-prototypes.
Diffstat (limited to 'compat/getdtablesize.c')
-rw-r--r-- | compat/getdtablesize.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compat/getdtablesize.c b/compat/getdtablesize.c index 9376218..ec22d41 100644 --- a/compat/getdtablesize.c +++ b/compat/getdtablesize.c @@ -14,6 +14,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "../config.h" + #include <unistd.h> int |