diff options
| author | Jari Aalto <jari.aalto@cante.net> | 1997-09-22 20:22:27 +0000 |
|---|---|---|
| committer | Jari Aalto <jari.aalto@cante.net> | 2009-09-12 16:46:51 +0000 |
| commit | e8ce775db824de329b81293b4e5d8fbd65624528 (patch) | |
| tree | 4b20c4dc766f5172b65ca1bc16ae1b6d48920fa1 /test.c | |
| parent | d166f048818e10cf3799aa24a174fb22835f1acc (diff) | |
| download | android_external_bash-e8ce775db824de329b81293b4e5d8fbd65624528.tar.gz android_external_bash-e8ce775db824de329b81293b4e5d8fbd65624528.tar.bz2 android_external_bash-e8ce775db824de329b81293b4e5d8fbd65624528.zip | |
Imported from ../bash-2.01.1.tar.gz.
Diffstat (limited to 'test.c')
| -rw-r--r-- | test.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -42,6 +42,11 @@ # include <unistd.h> #endif +#include <errno.h> +#if !defined (errno) +extern int errno; +#endif /* !errno */ + #if !defined (_POSIX_VERSION) # include <sys/file.h> #endif /* !_POSIX_VERSION */ @@ -55,11 +60,6 @@ # define STRLEN(s) ((s)[0] ? ((s)[1] ? ((s)[2] ? strlen(s) : 2) : 1) : 0) #endif -#include <errno.h> -#if !defined (errno) -extern int errno; -#endif /* !errno */ - #if !defined (STREQ) # define STREQ(a, b) ((a)[0] == (b)[0] && strcmp (a, b) == 0) #endif /* !STREQ */ |
