~ubuntu-branches/debian/lenny/netatalk/lenny

« back to all changes in this revision

Viewing changes to sys/generic/sys/cdefs.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Rittau
  • Date: 2004-01-19 12:43:49 UTC
  • Revision ID: james.westby@ubuntu.com-20040119124349-es563jbp0hk0ae51
Tags: upstream-1.6.4
ImportĀ upstreamĀ versionĀ 1.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: cdefs.h,v 1.4 2001/08/15 15:29:14 srittau Exp $
 
3
 */
 
4
 
 
5
#ifndef _SYS_CDEFS_H
 
6
#define _SYS_CDEFS_H 1
 
7
 
 
8
#if defined(__STDC__) || defined(__DECC)
 
9
/* Note that there must be exactly one space between __P(args) and args,
 
10
 * otherwise DEC C chokes.
 
11
 */
 
12
#define __P(args) args
 
13
#else /* __STDC__ */
 
14
#define __P(args)    ()
 
15
#endif /* __STDC__ */
 
16
 
 
17
#endif /* sys/cdefs.h */