summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/gpxe/src/arch/x86_64/include/bits/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux-4.02/gpxe/src/arch/x86_64/include/bits/compiler.h')
-rw-r--r--contrib/syslinux-4.02/gpxe/src/arch/x86_64/include/bits/compiler.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/gpxe/src/arch/x86_64/include/bits/compiler.h b/contrib/syslinux-4.02/gpxe/src/arch/x86_64/include/bits/compiler.h
new file mode 100644
index 0000000..51a7eaa
--- /dev/null
+++ b/contrib/syslinux-4.02/gpxe/src/arch/x86_64/include/bits/compiler.h
@@ -0,0 +1,14 @@
+#ifndef _BITS_COMPILER_H
+#define _BITS_COMPILER_H
+
+#ifndef ASSEMBLY
+
+/** Declare a function with standard calling conventions */
+#define __asmcall __attribute__ (( regparm(0) ))
+
+/** Declare a function with libgcc implicit linkage */
+#define __libgcc
+
+#endif /* ASSEMBLY */
+
+#endif /* _BITS_COMPILER_H */