Files
tww/include/dolphin/os/OSUtil.h
T
2024-07-12 11:03:34 -04:00

22 lines
394 B
C

#ifndef _DOLPHIN_OS_OSUTIL_H
#define _DOLPHIN_OS_OSUTIL_H
#include "dolphin/types.h"
#ifdef __cplusplus
extern "C" {
#endif // ifdef __cplusplus
// Macro to make it more clear when something is an address, and to prevent intellisense errors.
#ifdef __MWERKS__
#define AT_ADDRESS(addr) : (addr)
#else
#define AT_ADDRESS(addr)
#endif
#ifdef __cplusplus
};
#endif // ifdef __cplusplus
#endif