Skip to content
Snippets Groups Projects
Commit 2218832c authored by Sebastien Ponce's avatar Sebastien Ponce Committed by Steven Murray
Browse files

Got rid of useless _PROTO macros

Note that this change is a noop, as the code after compiler preprocessing does not change. This was actually double checked manually.
parent 546d7985
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@
#include <sys/types.h>
#include "osdep.h"
EXTERN_C int Csnprintf _PROTO((char *, size_t, const char *, ...));
EXTERN_C int Cvsnprintf _PROTO((char *, size_t, const char *, va_list));
EXTERN_C int Csnprintf (char *, size_t, const char *, ...);
EXTERN_C int Cvsnprintf (char *, size_t, const char *, va_list);
#endif /* __Csnprintf_h */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment