rc

[fork] interactive rc shell
Log | Files | Refs | README | LICENSE

commit 371c898151db2005e3350d9e3bf64ad416b53b02
parent b2dcb6df908bdbc7c9faed625389b9ad8d20544d
Author: tgoodwin <tgoodwin>
Date:   Fri, 17 Jul 1998 10:57:06 +0000

we need to include <sys/types.h> first

Diffstat:
Mproto.h | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/proto.h b/proto.h @@ -4,6 +4,10 @@ file, or---for older systems---declaring the functions directly. */ +#if HAVE_SYS_TYPES_H +#include <sys/types.h> +#endif + #include <signal.h> #if HAVE_QUAD_T @@ -48,10 +52,6 @@ extern void qsort(void *, size_t, size_t, int (*)(const void *, const void *)); #endif /* STDC_HEADERS */ -#if HAVE_SYS_TYPES_H -#include <sys/types.h> -#endif - #if HAVE_SYS_WAIT_H #include <sys/wait.h> #endif