diff options
author | Jim Meyering <jim@meyering.net> | 2000-07-29 08:15:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-07-29 08:15:01 +0000 |
commit | 043c4958deedb1006442828fa3957296fc3d9fa9 (patch) | |
tree | 4b2118532125f889849b12091ab8ae33c182ed4f | |
parent | 3819c2d7cb6b57a05d01381b67e1163e5467ee67 (diff) | |
download | coreutils-043c4958deedb1006442828fa3957296fc3d9fa9.tar.xz |
remove prematurely-added ISSLASH definition
-rw-r--r-- | lib/dirname.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/dirname.c b/lib/dirname.c index e6609f1ee..37f585861 100644 --- a/lib/dirname.c +++ b/lib/dirname.c @@ -34,10 +34,6 @@ char *malloc (); #endif #include <assert.h> -#ifndef ISSLASH -# define ISSLASH(C) ((C) == '/') -#endif - #include "dirname.h" /* Return the leading directories part of PATH, |