mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-08 02:53:03 +08:00
14 lines
197 B
C
14 lines
197 B
C
|
|
#ifndef ISP_UTILS_MISC_UINT64_CONST_H
|
|
#define ISP_UTILS_MISC_UINT64_CONST_H
|
|
|
|
#ifndef INT64_C
|
|
#define INT64_C(v) (v ## LL)
|
|
#endif
|
|
|
|
#ifndef UINT64_C
|
|
#define UINT64_C(v) (v ## ULL)
|
|
#endif
|
|
|
|
#endif
|