Super Mario 64s source code (from a leak on 4chan so be careful)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
180 B

6 years ago
  1. #ifndef _UNUSED_H_
  2. #define _UNUSED_H_
  3. // Avoid compiler warnings for unused variables
  4. #ifdef __GNUC__
  5. #define UNUSED __attribute__((unused))
  6. #else
  7. #define UNUSED
  8. #endif
  9. #endif