/[bison]/bison/src/getargs.c
ViewVC logotype

Diff of /bison/src/getargs.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.24.2.7 by akim, Wed Jan 23 13:14:56 2002 UTC revision 1.24.2.8 by juan_g, Wed Feb 13 16:13:31 2002 UTC
# Line 160  warranty; not even for MERCHANTABILITY o Line 160  warranty; not even for MERCHANTABILITY o
160  | Process the options.  |  | Process the options.  |
161  `----------------------*/  `----------------------*/
162    
163  /* Under DOS, there is no difference on the case.  This can be  /* Under plain DOS, there is no difference on the case.  This can be
164     troublesome when looking for `.tab' etc.  */     troublesome when looking for `.tab' etc.  */
165  #ifdef MSDOS  #ifdef MSDOS
166  # define AS_FILE_NAME(File) (strlwr (File), (File))  # if defined (__DJGPP__)
167    /* Windows 9X and successors are case sensitive. */
168    #  define AS_FILE_NAME(File) ((pathconf ((File), _PC_NAME_MAX) > 12) ? (File) : (strlwr (File), (File)))
169    # else
170    #  define AS_FILE_NAME(File) (strlwr (File), (File))
171    # endif
172  #else  #else
173  # define AS_FILE_NAME(File) (File)  # define AS_FILE_NAME(File) (File)
174  #endif  #endif

Legend:
Removed from v.1.24.2.7  
changed lines
  Added in v.1.24.2.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26