summaryrefslogtreecommitdiff
path: root/lib/savewd.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-02-18 21:08:06 +0000
committerBruno Haible <bruno@clisp.org>2007-02-18 21:08:06 +0000
commit9fbb5dcb459bf25d5e7b89fc209359e1a61a5214 (patch)
treee8029a7135141e2ab8133e1c63ee3deb1f2d68b0 /lib/savewd.c
parent3a9097ff8ab278180c9321fd29b8f1569bc9f111 (diff)
downloadgnulib-9fbb5dcb459bf25d5e7b89fc209359e1a61a5214.tar.gz
exit.h is replaced with stdlib.h.
Diffstat (limited to 'lib/savewd.c')
-rw-r--r--lib/savewd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/savewd.c b/lib/savewd.c
index 625c3cd440..58e0b613bd 100644
--- a/lib/savewd.c
+++ b/lib/savewd.c
@@ -1,6 +1,6 @@
/* Save and restore the working directory, possibly using a child process.
- Copyright (C) 2006 Free Software Foundation, Inc.
+ Copyright (C) 2006, 2007 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -27,11 +27,11 @@
#include <fcntl.h>
#include <signal.h>
#include <stdbool.h>
+#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
-#include "exit.h"
#include "dirname.h"
#include "fcntl-safer.h"