Merge commit 'upstream/1.7.2p6'
[debian/sudo] / getcwd.c
index b6feaac7562118e0418ee4959985313044bddb37..daa6b4da34ac75b3b50cb1a27cda0810269c0c15 100644 (file)
--- a/getcwd.c
+++ b/getcwd.c
@@ -27,7 +27,7 @@
  * SUCH DAMAGE.
  */
 
-#include "config.h"
+#include <config.h>
 
 #include <sys/param.h>
 #include <sys/stat.h>
 # endif
 #endif
 
-#include "compat.h"
+#include <compat.h>
 
 #define        ISDOT(dp) \
        (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
            (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
 
-#ifndef lint
-static const char rcsid[] = "$Sudo: getcwd.c,v 1.25 2004/06/06 23:58:10 millert Exp $";
-#endif /* lint */
-
 char *
 getcwd(pt, size)
        char *pt;