UnixOperatingSystem.st
changeset 6357 09ad2032f900
parent 6352 3d59cdc05365
child 6362 de25331c7d80
equal deleted inserted replaced
6356:5f8edb2d2b9f 6357:09ad2032f900
  1263 # ifndef MAXPATHLEN
  1263 # ifndef MAXPATHLEN
  1264 #  define MAXPATHLEN     1024
  1264 #  define MAXPATHLEN     1024
  1265 # endif
  1265 # endif
  1266 
  1266 
  1267 static
  1267 static
  1268 char *realpath(path, resolved_path)
  1268 char *
  1269 char *path;
  1269 realpath(path, resolved_path)
  1270 char resolved_path [];
  1270     char *path;
       
  1271     char resolved_path [];
  1271 {
  1272 {
  1272 	char copy_path[MAXPATHLEN];
  1273 	char copy_path[MAXPATHLEN];
  1273 	char link_path[MAXPATHLEN];
  1274 	char link_path[MAXPATHLEN];
  1274 	char *new_path = resolved_path;
  1275 	char *new_path = resolved_path;
  1275 	char *max_path;
  1276 	char *max_path;
 10221 ! !
 10222 ! !
 10222 
 10223 
 10223 !UnixOperatingSystem::FilePointerHandle class methodsFor:'documentation'!
 10224 !UnixOperatingSystem::FilePointerHandle class methodsFor:'documentation'!
 10224 
 10225 
 10225 version
 10226 version
 10226     ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.109 2001-12-21 17:44:20 stefan Exp $'
 10227     ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.110 2002-01-09 09:02:23 cg Exp $'
 10227 ! !
 10228 ! !
 10228 
 10229 
 10229 !UnixOperatingSystem::FilePointerHandle methodsFor:'release'!
 10230 !UnixOperatingSystem::FilePointerHandle methodsFor:'release'!
 10230 
 10231 
 10231 closeFile
 10232 closeFile
 11810 ! !
 11811 ! !
 11811 
 11812 
 11812 !UnixOperatingSystem class methodsFor:'documentation'!
 11813 !UnixOperatingSystem class methodsFor:'documentation'!
 11813 
 11814 
 11814 version
 11815 version
 11815     ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.109 2001-12-21 17:44:20 stefan Exp $'
 11816     ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.110 2002-01-09 09:02:23 cg Exp $'
 11816 ! !
 11817 ! !
 11817 UnixOperatingSystem initialize!
 11818 UnixOperatingSystem initialize!