diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-11-08 16:20:12 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-11-08 16:20:12 +0000 |
commit | 815774e87ff1244882093e3b8eb79ad3e386cf2f (patch) | |
tree | 8178a49420833edee10fbe67d634a43ab402fac3 /newlib/libc/include | |
parent | 85287b1eb0db4b5479a7a7d334b57c90ab39e998 (diff) | |
download | cygnal-815774e87ff1244882093e3b8eb79ad3e386cf2f.tar.gz cygnal-815774e87ff1244882093e3b8eb79ad3e386cf2f.tar.bz2 cygnal-815774e87ff1244882093e3b8eb79ad3e386cf2f.zip |
* libc/include/sys/unistd.h: Remove Cygwin definition of MAXPATHLEN.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/sys/unistd.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/newlib/libc/include/sys/unistd.h b/newlib/libc/include/sys/unistd.h index cf8298bd8..619652ffc 100644 --- a/newlib/libc/include/sys/unistd.h +++ b/newlib/libc/include/sys/unistd.h @@ -443,10 +443,7 @@ int _EXFUN(symlink, (const char *__name1, const char *__name2)); #define _CS_POSIX_V6_WIDTH_RESTRICTED_ENVS 17 #endif -/* FIXME: This is temporary until winsup gets sorted out. */ -#ifdef __CYGWIN__ -#define MAXPATHLEN (260 - 1 /* NUL */) -#else +#ifndef __CYGWIN__ # define MAXPATHLEN 1024 #endif |