Skip to content

Commit

Permalink
Need __P() macro
Browse files Browse the repository at this point in the history
  • Loading branch information
Murray S. Kucherawy committed Feb 25, 2010
1 parent 8531750 commit b730bdc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion libopendkim/dkim-mailparse.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,19 @@
#define _DKIM_MAILPARSE_H_

#ifndef lint
static char dkim_mailparse_h_id[] = "@(#)$Id: dkim-mailparse.h,v 1.1 2009/11/05 20:36:16 cm-msk Exp $";
static char dkim_mailparse_h_id[] = "@(#)$Id: dkim-mailparse.h,v 1.2 2010/02/25 21:52:06 cm-msk Exp $";
#endif /* !lint */

#ifdef __STDC__
# ifndef __P
# define __P(x) x
# endif /* ! __P */
#else /* __STDC__ */
# ifndef __P
# define __P(x) ()
# endif /* ! __P */
#endif /* __STDC__ */

/* prototypes */
extern int dkim_mail_parse __P((char *line, char **user_out,
char **domain_out));
Expand Down

0 comments on commit b730bdc

Please sign in to comment.