From b7fa405365c43fc2d45e37385ffd0111a4008eed Mon Sep 17 00:00:00 2001 From: Herbert Valerio Riedel Date: Tue, 19 Apr 2016 19:37:41 +0200 Subject: Convert /since/ to @since syntax --- System/Posix/Fcntl.hsc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'System/Posix/Fcntl.hsc') diff --git a/System/Posix/Fcntl.hsc b/System/Posix/Fcntl.hsc index 2d8ef12..c78f361 100644 --- a/System/Posix/Fcntl.hsc +++ b/System/Posix/Fcntl.hsc @@ -16,7 +16,7 @@ -- -- POSIX file control support -- --- /Since: 2.7.1.0/ +-- @since 2.7.1.0 ----------------------------------------------------------------------------- #include "HsUnix.h" @@ -44,7 +44,7 @@ import GHC.IO.Exception ( unsupportedOperation ) -- -- For more details, see documentation of @posix_fadvise(2)@. -- --- /Since: 2.7.1.0/ +-- @since 2.7.1.0 data Advice = AdviceNormal | AdviceRandom @@ -61,7 +61,7 @@ data Advice -- -- (use @#if HAVE_POSIX_FADVISE@ CPP guard to detect availability) -- --- /Since: 2.7.1.0/ +-- @since 2.7.1.0 fileAdvise :: Fd -> FileOffset -> FileOffset -> Advice -> IO () #if HAVE_POSIX_FADVISE fileAdvise fd off len adv = do @@ -88,7 +88,7 @@ fileAdvise _ _ _ _ = return () -- -- (use @#if HAVE_POSIX_FALLOCATE@ CPP guard to detect availability). -- --- /Since: 2.7.1.0/ +-- @since 2.7.1.0 fileAllocate :: Fd -> FileOffset -> FileOffset -> IO () #if HAVE_POSIX_FALLOCATE fileAllocate fd off len = do -- cgit v1.2.3