summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/include/conio.h
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2007-06-23 07:34:16 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2007-06-23 07:34:16 +0000
commit25b4cace7454db1a95a7072764ab186570217023 (patch)
tree25240aff14679d41bbfb06a092b61fa800be9e5f /winsup/mingw/include/conio.h
parent155911241cdbe9879f622e71d67a0c35f6410094 (diff)
downloadcygnal-25b4cace7454db1a95a7072764ab186570217023.tar.gz
cygnal-25b4cace7454db1a95a7072764ab186570217023.tar.bz2
cygnal-25b4cace7454db1a95a7072764ab186570217023.zip
*include/assert.h: Qualify all functions with __MINGW_NOTHROW.
*include/conio.h: Likewise. *include/ctype.h: Likewise. *include/direct.h: Likewise. *include/dos.h: Likewise. *include/errno.h: Likewise. *include/fenv.h: Likewise. *include/float.h: Likewise. *include/inttypes.h: Likewise. *include/io.h: Likewise. *include/libgen.h: Likewise. *include/locale.h: Likewise. *include/malloc.h: Likewise. *include/mbctype.h: Likewise. *include/mbstring.h: Likewise. *include/process.h: Likewise. *include/search.h: Likewise. *include/setjmp.h: Likewise. *include/signal.h: Likewise. *include/stdio.h: Likewise. *include/stdlib.h: Likewise. *include/string.h: Likewise. *include/time.h: Likewise. *include/wchar.h: Likewise. *include/sys/stat.h: Likewise. *include/sys/time.h: Likewise. *include/sys/timeb.h: Likewise. *include/sys/utime.h: Likewise.
Diffstat (limited to 'winsup/mingw/include/conio.h')
-rw-r--r--winsup/mingw/include/conio.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/winsup/mingw/include/conio.h b/winsup/mingw/include/conio.h
index a60ed85b2..8a821cbdb 100644
--- a/winsup/mingw/include/conio.h
+++ b/winsup/mingw/include/conio.h
@@ -21,25 +21,25 @@
extern "C" {
#endif
-_CRTIMP char* __cdecl _cgets (char*);
-_CRTIMP int __cdecl _cprintf (const char*, ...);
-_CRTIMP int __cdecl _cputs (const char*);
-_CRTIMP int __cdecl _cscanf (char*, ...);
+_CRTIMP char* __cdecl __MINGW_NOTHROW _cgets (char*);
+_CRTIMP int __cdecl __MINGW_NOTHROW _cprintf (const char*, ...);
+_CRTIMP int __cdecl __MINGW_NOTHROW _cputs (const char*);
+_CRTIMP int __cdecl __MINGW_NOTHROW _cscanf (char*, ...);
-_CRTIMP int __cdecl _getch (void);
-_CRTIMP int __cdecl _getche (void);
-_CRTIMP int __cdecl _kbhit (void);
-_CRTIMP int __cdecl _putch (int);
-_CRTIMP int __cdecl _ungetch (int);
+_CRTIMP int __cdecl __MINGW_NOTHROW _getch (void);
+_CRTIMP int __cdecl __MINGW_NOTHROW _getche (void);
+_CRTIMP int __cdecl __MINGW_NOTHROW _kbhit (void);
+_CRTIMP int __cdecl __MINGW_NOTHROW _putch (int);
+_CRTIMP int __cdecl __MINGW_NOTHROW _ungetch (int);
#ifndef _NO_OLDNAMES
-_CRTIMP int __cdecl getch (void);
-_CRTIMP int __cdecl getche (void);
-_CRTIMP int __cdecl kbhit (void);
-_CRTIMP int __cdecl putch (int);
-_CRTIMP int __cdecl ungetch (int);
+_CRTIMP int __cdecl __MINGW_NOTHROW getch (void);
+_CRTIMP int __cdecl __MINGW_NOTHROW getche (void);
+_CRTIMP int __cdecl __MINGW_NOTHROW kbhit (void);
+_CRTIMP int __cdecl __MINGW_NOTHROW putch (int);
+_CRTIMP int __cdecl __MINGW_NOTHROW ungetch (int);
#endif /* Not _NO_OLDNAMES */