From a0c19101ff9d0653f7942da9df73440908723864 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Thu, 1 Nov 2007 03:13:31 +0000 Subject: Get rid of ARGS git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@442 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- lib/pm.h | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'lib/pm.h') diff --git a/lib/pm.h b/lib/pm.h index 28dfbb43..9fa061b8 100644 --- a/lib/pm.h +++ b/lib/pm.h @@ -34,30 +34,6 @@ extern "C" { #endif -/* Definitions to make Netpbm programs work with either ANSI C or C - Classic. - - This is obsolete, as all compilers recognize the ANSI syntax now. - - We are slowly removing all the ARGS invocations from the programs - (and replacing them with explicit ANSI syntax), but we have a lot - of programs where we have removed ARGS from the definition but not - the prototype, and we have discovered that the Sun compiler - considers the resulting mismatch between definition and prototype - to be an error. So we make ARGS create the ANSI syntax - unconditionally to avoid having to fix all those mismatches. */ - -#if 0 -#if __STDC__ -#define ARGS(alist) alist -#else /*__STDC__*/ -#define ARGS(alist) () -#define const -#endif /*__STDC__*/ -#endif -#define ARGS(alist) alist - - /* PM_GNU_PRINTF_ATTR lets the GNU compiler check pm_message() and pm_error() calls to be sure the arguments match the format string, thus preventing runtime segmentation faults and incorrect messages. -- cgit 1.4.1