diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/drmstat.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/drmstat.c b/tests/drmstat.c index e2e75234..345b8d2c 100644 --- a/tests/drmstat.c +++ b/tests/drmstat.c @@ -46,6 +46,11 @@  #endif  #include "xf86drm.h" +/* Support gcc's __FUNCTION__ for people using other compilers */ +#if !defined(__GNUC__) && !defined(__FUNCTION__) +# define __FUNCTION__ __func__ /* C99 */ +#endif +  int sigio_fd;  static double usec(struct timeval *end, struct timeval *start)  | 
