[MLton-commit] r4341
Matthew Fluet
MLton@mlton.org
Thu, 2 Feb 2006 16:58:37 -0800
Add UIntmax to generated C types; we'll use this for SysWord
----------------------------------------------------------------------
U mlton/branches/on-20050822-x86_64-branch/basis-library/config/c/amd64-linux/c-types.sml
----------------------------------------------------------------------
Modified: mlton/branches/on-20050822-x86_64-branch/basis-library/config/c/amd64-linux/c-types.sml
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/basis-library/config/c/amd64-linux/c-types.sml 2006-02-03 00:58:00 UTC (rev 4340)
+++ mlton/branches/on-20050822-x86_64-branch/basis-library/config/c/amd64-linux/c-types.sml 2006-02-03 00:58:35 UTC (rev 4341)
@@ -37,6 +37,10 @@
structure Status = Int
structure Sock = Int
+(* C99 *)
+structure Intmax = struct open Int64 type t = int end
+structure UIntmax = struct open Word64 type t = word end
+
(* from <dirent.h> *)
structure DirP = struct open Word32 type t = word end