From 2218832c303182974f329360233186dc4b3f6708 Mon Sep 17 00:00:00 2001 From: Sebastien Ponce <sponcec3@cern.ch> Date: Fri, 2 Jul 2010 15:03:33 +0000 Subject: [PATCH] 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. --- mediachanger/castorrmc/h/Csnprintf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mediachanger/castorrmc/h/Csnprintf.h b/mediachanger/castorrmc/h/Csnprintf.h index d685cf0573..989656e8e0 100644 --- a/mediachanger/castorrmc/h/Csnprintf.h +++ b/mediachanger/castorrmc/h/Csnprintf.h @@ -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 */ -- GitLab