diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2007-06-23 07:54:58 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2007-06-23 07:54:58 +0000 |
commit | 26e8e4befff225f93ed71f0f3182647cea975ecc (patch) | |
tree | a01a9215c626be61a1cca1f9a3c2fd04605694b5 /winsup/mingw/include/dirent.h | |
parent | 25b4cace7454db1a95a7072764ab186570217023 (diff) | |
download | cygnal-26e8e4befff225f93ed71f0f3182647cea975ecc.tar.gz cygnal-26e8e4befff225f93ed71f0f3182647cea975ecc.tar.bz2 cygnal-26e8e4befff225f93ed71f0f3182647cea975ecc.zip |
*include/wctpe.h: Likewise.
*include/wdirent.h: Likewise.
Changelog: Whitespace
Further: http://www.lib.virginia.edu/cgi-bin/imgload.cgi/53
Diffstat (limited to 'winsup/mingw/include/dirent.h')
-rw-r--r-- | winsup/mingw/include/dirent.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/winsup/mingw/include/dirent.h b/winsup/mingw/include/dirent.h index a18cbcab9..e2a668924 100644 --- a/winsup/mingw/include/dirent.h +++ b/winsup/mingw/include/dirent.h @@ -57,12 +57,12 @@ typedef struct char dd_name[1]; } DIR; -DIR* __cdecl opendir (const char*); -struct dirent* __cdecl readdir (DIR*); -int __cdecl closedir (DIR*); -void __cdecl rewinddir (DIR*); -long __cdecl telldir (DIR*); -void __cdecl seekdir (DIR*, long); +DIR* __cdecl __MINGW_NOTHROW opendir (const char*); +struct dirent* __cdecl __MINGW_NOTHROW readdir (DIR*); +int __cdecl __MINGW_NOTHROW closedir (DIR*); +void __cdecl __MINGW_NOTHROW rewinddir (DIR*); +long __cdecl __MINGW_NOTHROW telldir (DIR*); +void __cdecl __MINGW_NOTHROW seekdir (DIR*, long); /* wide char versions */ @@ -106,12 +106,12 @@ typedef struct -_WDIR* __cdecl _wopendir (const wchar_t*); -struct _wdirent* __cdecl _wreaddir (_WDIR*); -int __cdecl _wclosedir (_WDIR*); -void __cdecl _wrewinddir (_WDIR*); -long __cdecl _wtelldir (_WDIR*); -void __cdecl _wseekdir (_WDIR*, long); +_WDIR* __cdecl __MINGW_NOTHROW _wopendir (const wchar_t*); +struct _wdirent* __cdecl __MINGW_NOTHROW _wreaddir (_WDIR*); +int __cdecl __MINGW_NOTHROW _wclosedir (_WDIR*); +void __cdecl __MINGW_NOTHROW _wrewinddir (_WDIR*); +long __cdecl __MINGW_NOTHROW _wtelldir (_WDIR*); +void __cdecl __MINGW_NOTHROW _wseekdir (_WDIR*, long); #ifdef __cplusplus |