diff options
Diffstat (limited to 'linux/os.h')
-rw-r--r-- | linux/os.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -30,3 +30,9 @@ #else # error "This program is only implemented for x86-64 on Linux" #endif + +#if defined(__sparc__) +# define REGARGS(a, b) b, a +#else +# define REGARGS(a, b) a, b +#endif |