Commit 91a8adb6 91a8adb6c5fc5fdd4056ee0e23a925a27f3d7ebf by Sergey Poznyakoff

Use PROTOTYPES to determine whether the compiler understands

function prototypes.
1 parent fe143d9a
......@@ -28,7 +28,7 @@ extern "C" {
#endif
#ifndef __P
# ifdef __STDC__
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define __P(args) args
# else
# define __P(args) ()
......