diff options
author | Wichert Akkerman <wakkerma@debian.org> | 2001-04-21 22:16:07 +0000 |
---|---|---|
committer | Wichert Akkerman <wakkerma@debian.org> | 2001-04-21 22:16:07 +0000 |
commit | 0b0b0808060caaa30e2130e8030423197ac413fc (patch) | |
tree | 273401ffbc7a706e7723afb090eb9bbf4d8c5e71 | |
parent | bf40e89a843efc6ec68e0033c22fc5f0bf54c8e4 (diff) | |
download | dpkg-0b0b0808060caaa30e2130e8030423197ac413fc.tar.gz |
include stdlib.h to get exit declaration
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/showcright.c | 1 | ||||
-rw-r--r-- | optlib/long-options.c | 1 |
3 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Sun Apr 22 00:09:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org> + + * optlib/long-options.c, lib/showcright.c: include stdlib.h to get + declaration of exit + Sat Apr 21 17:10:32 CEST 2001 peter karlsson <peterk@debian.org> * po/sv.po, doc/sv/dpkg.8, doc/sv/start-stop-daemon.8: diff --git a/lib/showcright.c b/lib/showcright.c index b05bf4f15..bb28a1931 100644 --- a/lib/showcright.c +++ b/lib/showcright.c @@ -19,6 +19,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include <stdlib.h> #include <unistd.h> #include <fcntl.h> diff --git a/optlib/long-options.c b/optlib/long-options.c index 4d216abd3..1a2de79c1 100644 --- a/optlib/long-options.c +++ b/optlib/long-options.c @@ -22,6 +22,7 @@ #endif #include <stdio.h> +#include <stdlib.h> #include <getopt.h> #include "closeout.h" #include "long-options.h" |