diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | src/actions.c | bin | 56536 -> 308 bytes | |||
-rw-r--r-- | src/events.c | 1 | ||||
-rw-r--r-- | src/getopt.c | 2 |
4 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,12 @@ +2002-04-25 Gergely Nagy <algernon@debian.org> + + * src/actions.c: include <strings.h> + include setenv implementation if HAVE_SETENV is not set, + OR setenv is not defined (removes a compiler warning on + AIX) + * src/events.c: include <strings.h> + * src/getopt.c: include <strings.h> + 2002-03-13 Shawn Betts <sabetts@vcn.bc.ca> * src/actions.c (cmd_nextscreen): An error message is displayed diff --git a/src/actions.c b/src/actions.c Binary files differindex 3f23ddf..d6bf4a6 100644 --- a/src/actions.c +++ b/src/actions.c diff --git a/src/events.c b/src/events.c index f759f35..e9f0db3 100644 --- a/src/events.c +++ b/src/events.c @@ -28,6 +28,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #include <signal.h> #include <errno.h> #include <unistd.h> diff --git a/src/getopt.c b/src/getopt.c index 10d8b4e..b81fc0d 100644 --- a/src/getopt.c +++ b/src/getopt.c @@ -35,6 +35,8 @@ #include <config.h> #endif +#include <strings.h> + #ifndef HAVE_GETOPT_LONG #if !defined (__STDC__) || !__STDC__ |