diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-25 23:21:46 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-25 23:21:46 +0100 |
commit | 8d0e0cdadf726beab28ccdc7d69738c1534e1f74 (patch) | |
tree | 73eec58affb5ac0b6d8e97fb36e9f0beb11da00d /shell/ash.c | |
parent | 9aa599dc9dc076f6fa6e4312e4750a703cf16450 (diff) | |
download | busybox-w32-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.tar.gz busybox-w32-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.tar.bz2 busybox-w32-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.zip |
move utmp.h include to libbb.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index 298ba3558..0bcbf9028 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -4944,6 +4944,8 @@ stoppedjobs(void) | |||
4944 | * Code for dealing with input/output redirection. | 4944 | * Code for dealing with input/output redirection. |
4945 | */ | 4945 | */ |
4946 | 4946 | ||
4947 | #undef EMPTY | ||
4948 | #undef CLOSED | ||
4947 | #define EMPTY -2 /* marks an unused slot in redirtab */ | 4949 | #define EMPTY -2 /* marks an unused slot in redirtab */ |
4948 | #define CLOSED -3 /* marks a slot of previously-closed fd */ | 4950 | #define CLOSED -3 /* marks a slot of previously-closed fd */ |
4949 | 4951 | ||