X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/aad5d20016b28bb8c28592c1ebe4213aafaa43c3..de06ed5f176a5fa3eb5522bb9a9741f9c3f1d0f4:/h/nmh.h?ds=inline diff --git a/h/nmh.h b/h/nmh.h index 24689192..07f7240b 100644 --- a/h/nmh.h +++ b/h/nmh.h @@ -1,6 +1,4 @@ - -/* - * nmh.h -- system configuration header file +/* nmh.h -- system configuration header file */ #ifdef HAVE_CONFIG_H @@ -15,11 +13,19 @@ # include #endif #include + +#ifdef HAVE_STDBOOL_H +# include +#else +# define bool int +# define true 1 +# define false 0 +#endif + #include #include # include -#define NLENGTH(dirent) strlen((dirent)->d_name) #include #include @@ -68,6 +74,10 @@ # endif #endif +#ifndef HAVE_GETLINE +ssize_t getline(char **lineptr, size_t *n, FILE *stream); +#endif + /* * Defaults for programs if they aren't configured in a user's profile */