2001-11-08 Robert Collins <rbtcollins@hotmail.com>

* include/errno.h: Fix "errno is not a prototype" warning.
This commit is contained in:
Robert Collins 2001-11-07 14:10:25 +00:00
parent e2c07930f7
commit 4cecec6cde
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-11-08 Robert Collins <rbtcollins@hotmail.com>
* include/errno.h: Fix "errno is not a prototype" warning.
2001-11-05 Egor Duda <deo@logos-m.ru>
* Makefile.in: Delete unused executable after creating base-files.

View File

@ -104,7 +104,7 @@ extern "C" {
#undef errno
extern int errno;
#else
int* _errno();
int* _errno(void);
#define errno (*_errno())
#endif