aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-24 17:19:38 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-24 17:19:38 +0000
commit1a10eec17846b864a89834239a0533040cb504e7 (patch)
tree683eedea421bf7ded04b9eaae3f448b322c91381 /shell
parentbfebd35bea54258dfc9cbe92659c5e9f7c09adbd (diff)
downloadbusybox-w32-1a10eec17846b864a89834239a0533040cb504e7.tar.gz
busybox-w32-1a10eec17846b864a89834239a0533040cb504e7.tar.bz2
busybox-w32-1a10eec17846b864a89834239a0533040cb504e7.zip
Fixup the location of pwd.h and grp.h
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c4
-rw-r--r--shell/cmdedit.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 8544d8131..ffafcfeb4 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -89,7 +89,6 @@
89#include <fcntl.h> 89#include <fcntl.h>
90#include <limits.h> 90#include <limits.h>
91#include <paths.h> 91#include <paths.h>
92#include <pwd.h>
93#include <setjmp.h> 92#include <setjmp.h>
94#include <signal.h> 93#include <signal.h>
95#include <stdarg.h> 94#include <stdarg.h>
@@ -107,6 +106,7 @@
107#include <sys/times.h> 106#include <sys/times.h>
108#include <sys/types.h> 107#include <sys/types.h>
109#include <sys/wait.h> 108#include <sys/wait.h>
109#include "pwd.h"
110 110
111 111
112#if !defined(FNMATCH_BROKEN) 112#if !defined(FNMATCH_BROKEN)
@@ -12627,7 +12627,7 @@ findvar(struct var **vpp, const char *name)
12627/* 12627/*
12628 * Copyright (c) 1999 Herbert Xu <herbert@debian.org> 12628 * Copyright (c) 1999 Herbert Xu <herbert@debian.org>
12629 * This file contains code for the times builtin. 12629 * This file contains code for the times builtin.
12630 * $Id: ash.c,v 1.30 2001/10/24 08:01:06 andersen Exp $ 12630 * $Id: ash.c,v 1.31 2001/10/24 17:19:35 andersen Exp $
12631 */ 12631 */
12632static int timescmd (int argc, char **argv) 12632static int timescmd (int argc, char **argv)
12633{ 12633{
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index d1b9111ea..d57e4c12b 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -82,7 +82,7 @@
82 82
83#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR 83#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
84# ifndef TEST 84# ifndef TEST
85# include "pwd_grp/pwd.h" 85# include "pwd.h"
86# else 86# else
87# include <pwd.h> 87# include <pwd.h>
88# endif /* TEST */ 88# endif /* TEST */