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

Dropped useless DLL_DECL macro.

Note that this change is a noop, as the code after compiler preprocessing does not change. This was actually double checked manually.
parent 771deb6d
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
/* Hide the snprintf and al. call v.s. different OS. */
/* Sometimes a different name, sometimes do not exist */
int DLL_DECL Csnprintf(char *str, size_t size, const char *format, ...) {
int Csnprintf(char *str, size_t size, const char *format, ...) {
int rc;
va_list args;
......@@ -20,7 +20,7 @@ int DLL_DECL Csnprintf(char *str, size_t size, const char *format, ...) {
return(rc);
}
int DLL_DECL Cvsnprintf(char *str, size_t size, const char *format, va_list args)
int Cvsnprintf(char *str, size_t size, const char *format, va_list args)
{
return(vsnprintf(str, size, format, args));
}
......
......@@ -10,7 +10,7 @@
#include <sys/types.h>
#include "osdep.h"
EXTERN_C int DLL_DECL Csnprintf _PROTO((char *, size_t, const char *, ...));
EXTERN_C int DLL_DECL Cvsnprintf _PROTO((char *, size_t, const char *, va_list));
EXTERN_C int Csnprintf _PROTO((char *, size_t, const char *, ...));
EXTERN_C int Cvsnprintf _PROTO((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