lio 0.1.0 → 0.1.1
raw patch · 5 files changed
+10/−9 lines, 5 filesdep ~base64-bytestring
Dependency ranges changed: base64-bytestring
Files
- LIO.hs +1/−1
- LIO/TCB.hs +1/−0
- cbits/HsTmp.c +3/−3
- include/HsTmp.h +3/−3
- lio.cabal +2/−2
LIO.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE CPP #-}-#if defined(__GLASGOW_HASKELL__) && (__GLASGOW_HASKELL__ >= 702)+#if __GLASGOW_HASKELL__ >= 702 {-# LANGUAGE Safe #-} #endif
LIO/TCB.hs view
@@ -536,6 +536,7 @@ -- | @Labeled@ is a type representing labeled data. data Labeled l t = LabeledTCB l t+ deriving (Typeable) -- | Returns label of a 'Labeled' type. labelOf :: Label l => Labeled l a -> l
cbits/HsTmp.c view
@@ -1,19 +1,19 @@ #include "HsTmp.h" #if HAVE_MKSTEMP-int __hscore_mkstemp(char *filetemplate) {+int __hstmp_mkstemp(char *filetemplate) { return (mkstemp(filetemplate)); } #endif #if HAVE_MKSTEMPS-int __hscore_mkstemps(char *filetemplate, int suffixlen) {+int __hstmp_mkstemps(char *filetemplate, int suffixlen) { return (mkstemps(filetemplate, suffixlen)); } #endif #if HAVE_MKDTEMP-char *__hscore_mkdtemp(char *filetemplate) {+char *__hstmp_mkdtemp(char *filetemplate) { return (mkdtemp(filetemplate)); } #endif
include/HsTmp.h view
@@ -8,15 +8,15 @@ #if HAVE_MKSTEMP-int __hscore_mkstemp(char *filetemplate);+int __hstmp_mkstemp(char *filetemplate); #endif #if HAVE_MKSTEMPS-int __hscore_mkstemps(char *filetemplate, int suffixlen);+int __hstmp_mkstemps(char *filetemplate, int suffixlen); #endif #if HAVE_MKDTEMP-char *__hscore_mkdtemp(char *filetemplate);+char *__hstmp_mkdtemp(char *filetemplate); #endif #endif
lio.cabal view
@@ -1,5 +1,5 @@ Name: lio-Version: 0.1.0+Version: 0.1.1 build-type: Simple License: GPL License-File: LICENSE@@ -64,7 +64,7 @@ time >= 1.1.4 && < 2, dclabel >= 0.0.4 && < 2, cereal >= 0.3.3 && < 0.4,- base64-bytestring >= 0.1.0.4+ base64-bytestring >= 0.1.1.0 ghc-options: -Wall -fno-warn-orphans