11 lines
207 B
C
11 lines
207 B
C
#ifndef _TRADITIONAL_H
|
|
#define _TRADITIONAL_H 1
|
|
|
|
#if defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus)
|
|
#define _ARGS(args) args
|
|
#else
|
|
#define _ARGS(args) ()
|
|
#endif
|
|
|
|
#endif /* traditional.h */
|