* src/lib/evil_stdio.c:

* src/lib/evil_stdio.h:
	better perror() declaration / definition



SVN revision: 55954
This commit is contained in:
Vincent Torri 2011-01-06 19:32:03 +00:00
parent 2a3012715d
commit b16da2d20f
3 changed files with 13 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2011-01-06 Vincent Torri <doursse at users dot sf dot net>
* src/lib/evil_stdio.c:
* src/lib/evil_stdio.h:
better perror() declaration / definition
2011-01-04 Vincent Torri <doursse at users dot sf dot net>
* src/lib/evil_unistd.c:

View File

@ -15,10 +15,10 @@
*
*/
/* void perror (const char *s __UNUSED__) */
/* { */
/* fprintf(stderr, "[Windows CE] error\n"); */
/* } */
void evil_perror (const char *s __UNUSED__)
{
fprintf(stderr, "[Windows CE] error\n");
}
/*
* Stream related functions

View File

@ -20,7 +20,9 @@
*
*/
/* EAPI void perror (const char *s); */
EAPI void evil_perror (const char *s);
# define perror(s) evil_perror(s)
/*
* Stream related functions