diff options
author | MauricioAntunes <> | 2009-09-27 23:59:08 (GMT) |
---|---|---|
committer | Luite Stegeman <luite@luite.com> | 2009-09-27 23:59:08 (GMT) |
commit | 1179bed1f8cbd4af2df75d45b288c2ee24ab45c3 (patch) | |
tree | 2e0eb307a3aa11d095dc65b383438b842d9c977a | |
parent | 07065b97da63f83703d1feb1fda181118e7a3100 (diff) |
version 1.0.11.0.1
-rw-r--r-- | .hg_archival.txt | 2 | ||||
-rw-r--r-- | .hgtags | 2 | ||||
-rw-r--r-- | bindings-posix.cabal | 2 | ||||
-rw-r--r-- | src/Bindings/Posix/Sys/Utsname.hsc | 10 |
4 files changed, 9 insertions, 7 deletions
diff --git a/.hg_archival.txt b/.hg_archival.txt index eee06a4..e2aff3a 100644 --- a/.hg_archival.txt +++ b/.hg_archival.txt @@ -1,2 +1,2 @@ repo: c1d900fe279ed394e13fbfd3c5d65142fc21d6e9 -node: ffac32b2f31620096c144b276006c5c0d2748379 +node: 3ab42787c4ec1e8fbd617ef55233b3d47c6258b3 @@ -1 +1,3 @@ e869165f6d328791ed6913c6cdfa1b64708fc171 0.0.2 +ffac32b2f31620096c144b276006c5c0d2748379 1.0 +d7dd4dbdf8b4fa64a1de71d562799ad6ba70d64a 1.0.1 diff --git a/bindings-posix.cabal b/bindings-posix.cabal index 54288a9..54c51cd 100644 --- a/bindings-posix.cabal +++ b/bindings-posix.cabal @@ -3,7 +3,7 @@ name: bindings-posix homepage: http://bitbucket.org/mauricio/bindings-posix synopsis: Low level bindings to posix. -version: 1.0 +version: 1.0.1 license: BSD3 license-file: LICENSE maintainer: MaurĂcio C. Antunes <mauricio.antunes@gmail.com> diff --git a/src/Bindings/Posix/Sys/Utsname.hsc b/src/Bindings/Posix/Sys/Utsname.hsc index 4b15799..9881c07 100644 --- a/src/Bindings/Posix/Sys/Utsname.hsc +++ b/src/Bindings/Posix/Sys/Utsname.hsc @@ -8,11 +8,11 @@ import Foreign import Foreign.C #starttype struct utsname -#field sysname , CString -#field nodename , CString -#field release , CString -#field version , CString -#field machine , CString +#array_field sysname , CChar +#array_field nodename , CChar +#array_field release , CChar +#array_field version , CChar +#array_field machine , CChar #stoptype #ccall uname , Ptr <utsname> -> IO CInt |