Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!seismo!sundc!pitstop!sun!imagen!atari!portal!cup.portal.com!Terry_L_Parker From: Terry_L_Parker@cup.portal.com Newsgroups: comp.lang.c Subject: Prototyping macros Message-ID: <947@cup.portal.com> Date: Tue, 13-Oct-87 05:38:30 EDT Article-I.D.: cup.947 Posted: Tue Oct 13 05:38:30 1987 Date-Received: Wed, 14-Oct-87 07:15:54 EDT References: <8652@utzoo.UUCP> <69800001@cdp> <2450@mmintl.UUCP> Organization: The Portal System (TM) Lines: 12 XPortal-User-Id: 1.1001.2374 Does the ANSI standard provide any way to prototype #define macros? For instance: #define max(a,b) (a>b ? a : b) will accept char's or anything else for the a and b values. Is it possible to do something like: #define max(int a, int b) (a>b ? a : b) ??