Changeset 2591 for trunk/src/kmk/vmsify.c
- Timestamp:
- Jun 17, 2012, 10:45:31 PM (13 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
- Property svn:ignore
-
old new 13 13 stamp-* 14 14 makebook* 15 15 16 .*gdbinit 17 .gdb_history 18 16 19 *.dep 17 20 *.dvi … … 31 34 *.pg 32 35 *.pgs 36 33 37 README 34 38 README.DOS 35 39 README.W32 40 README.OS2 36 41 aclocal.m4 37 42 autom4te.cache … … 52 57 config.h.W32 53 58 config.h-vms 59 54 60 loadavg 55 61 loadavg.c 56 62 make 63 57 64 .deps 58 65 .dep_segment 66 ID 67 TAGS 68 59 69 _* 60 70 sun4 … … 72 82 sol2 73 83 i486-linux 84 74 85 customs 86 75 87 install-sh 76 88 mkinstalldirs 89 90 .directive.asc
-
- Property svn:ignore
-
trunk/src/kmk/vmsify.c
r1993 r2591 1 1 /* vmsify.c -- Module for vms <-> unix file name conversion 2 2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 3 2007 Free Software Foundation, Inc.3 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 4 4 This file is part of GNU Make. 5 5 … … 121 121 char *s; 122 122 123 INIT_DSC_CSTRING (name_dsc, name); 123 /* 124 * the string isn't changed, but there is no string descriptor with 125 * "const char *dsc$a_pointer" 126 */ 127 INIT_DSC_CSTRING (name_dsc, (char *)name); 124 128 125 129 stat = lib$sys_trnlog (&name_dsc, &resltlen, &reslt_dsc); … … 228 232 int as_dir; 229 233 int count; 234 const char *s; 235 const char *s1; 236 const char *s2; 230 237 231 238 if (name == 0) … … 240 247 if (t != 0) 241 248 { 242 const char *s1;243 const char *s2;249 // const char *s1; 250 // const char *s2; 244 251 245 252 if (type == 1) … … 273 280 if (t != 0) 274 281 { 275 const char *s; 276 const char *s1 = strchr (t+1, '['); 282 // const char *s; 283 // const char *s1 = strchr (t+1, '['); 284 s1 = strchr (t+1, '['); 277 285 if (s1 == 0) 278 286 { … … 389 397 case 3: /* '//' at start */ 390 398 { 391 const char *s;392 const char *s1;399 // const char *s; 400 // const char *s1; 393 401 char *vp; 394 402 while (*fptr == '/') /* collapse all '/' */
Note:
See TracChangeset
for help on using the changeset viewer.