aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-24 17:19:38 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-24 17:19:38 +0000
commit862f29a24f00bb6d8825390f323ae6ce43e36c05 (patch)
tree683eedea421bf7ded04b9eaae3f448b322c91381 /shell
parent9c8427bb38f1d3ec3d3c3d08fa925bccf444b633 (diff)
downloadbusybox-w32-862f29a24f00bb6d8825390f323ae6ce43e36c05.tar.gz
busybox-w32-862f29a24f00bb6d8825390f323ae6ce43e36c05.tar.bz2
busybox-w32-862f29a24f00bb6d8825390f323ae6ce43e36c05.zip
Fixup the location of pwd.h and grp.h
git-svn-id: svn://busybox.net/trunk/busybox@3572 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 */