changeset 2789:0a785f9ebe54

(dir_name): Use __MSDOS__ in favor of MSDOS.
author Jim Meyering <jim@meyering.net>
date Sat, 29 Jul 2000 17:11:33 +0000
parents f199a49cd526
children 0dd013f4edab
files lib/dirname.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/dirname.c	Sat Jul 29 17:06:53 2000 +0000
+++ b/lib/dirname.c	Sat Jul 29 17:11:33 2000 +0000
@@ -65,7 +65,7 @@
   else
     {
       /* Remove any trailing slashes from the result.  */
-#ifdef MSDOS
+#ifdef __MSDOS__
       const char *lim = ((path[0] >= 'A' && path[0] <= 'z' && path[1] == ':')
 			 ? path + 2 : path);