diff options
Diffstat (limited to 'funcjmp_ext_x86.c')
-rw-r--r-- | funcjmp_ext_x86.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/funcjmp_ext_x86.c b/funcjmp_ext_x86.c index 9bf20f4..46e76bd 100644 --- a/funcjmp_ext_x86.c +++ b/funcjmp_ext_x86.c @@ -1,6 +1,9 @@ #include <stdio.h> #include <stdlib.h> +#ifndef __i386 +#error "Unsupported Architecture" +#endif #define INTEL_ASM(_asm_str) asm volatile(".intel_syntax noprefix"); \ asm volatile(_asm_str); \ |