diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2013-09-22 22:04:55 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2013-09-22 22:04:55 +0200 |
commit | 40c00afe77a442c4cdc1bb85fadbd57aea89abb8 (patch) | |
tree | a134ff666b57bec6c392c2a223a6dd22f1fd91b4 /libraries/base/Foreign | |
parent | 0a5ecb536e0f25383cfeacc6f50b0d28be297da4 (diff) | |
download | haskell-40c00afe77a442c4cdc1bb85fadbd57aea89abb8.tar.gz |
Add Haddock `/Since: 4.4.0.0/` comments to symbols
This commit retroactively adds `/Since: 4.4.0.0/` annotations to symbols
newly added/exposed in `base-4.4.0.0` (as shipped with GHC 7.2.1).
See also 6368362f which adds the respective annotation for symbols newly
added in `base-4.7.0.0` (that goes together with GHC 7.8.1).
Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
Diffstat (limited to 'libraries/base/Foreign')
-rw-r--r-- | libraries/base/Foreign/C/Types.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libraries/base/Foreign/C/Types.hs b/libraries/base/Foreign/C/Types.hs index b247b5afcf..3a35510148 100644 --- a/libraries/base/Foreign/C/Types.hs +++ b/libraries/base/Foreign/C/Types.hs @@ -187,8 +187,12 @@ ARITHMETIC_TYPE(CClock,HTYPE_CLOCK_T) -- | Haskell type representing the C @time_t@ type. ARITHMETIC_TYPE(CTime,HTYPE_TIME_T) -- | Haskell type representing the C @useconds_t@ type. +-- +-- /Since: 4.4.0.0/ ARITHMETIC_TYPE(CUSeconds,HTYPE_USECONDS_T) -- | Haskell type representing the C @suseconds_t@ type. +-- +-- /Since: 4.4.0.0/ ARITHMETIC_TYPE(CSUSeconds,HTYPE_SUSECONDS_T) -- FIXME: Implement and provide instances for Eq and Storable |