Browse Source

fixed type names

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7809 8c9fc860-2736-0410-a75d-ab315db34111
eth.guenter 7 years ago
parent
commit
634e717643
1 changed files with 6 additions and 6 deletions
  1. 6 6
      source/Generic.Darwin.I386.Unix.Mod

+ 6 - 6
source/Generic.Darwin.I386.Unix.Mod

@@ -268,17 +268,17 @@ TYPE
 
 
 TYPE
-	DevT* = LONGINT;
-	InoT* = LONGINT;
+	dev_t* = LONGINT;
+	ino_t* = LONGINT;
 
 	Status* = RECORD
-				dev-		: DevT;
-				ino-		: InoT;
+				dev-		: dev_t;
+				ino-		: ino_t;
 				mode-	: INTEGER;
 				nlink-		: INTEGER;
 				uid-		: LONGINT;
 				gid-		: LONGINT;
-				rdev-		: DevT;
+				rdev-		: dev_t;
 				atime-	: Timeval;
 				mtime-	: Timeval;
 				ctime-	: Timeval;
@@ -325,7 +325,7 @@ TYPE
 	FdSet* = ARRAY FdSetLen OF SET;
 
 	Dirent* = POINTER TO RECORD
-				ino-		: InoT;
+				ino-		: ino_t;
 				reclen-	: INTEGER;
 				typ-		: SHORTINT;
 				namlen-	: SHORTINT;