Files
2024-02-19 00:21:16 -05:00

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 */