]> git.proxmox.com Git - mirror_qemu.git/blobdiff - linux-user/errno_defs.h
Supply missing header guards
[mirror_qemu.git] / linux-user / errno_defs.h
index 55fbebda5101623251584fbb563c3cb116b91007..aaf5208d62d652630dd191761a387c0b54dcef3d 100644 (file)
@@ -4,6 +4,10 @@
  *
  * Taken from asm-generic/errno-base.h and asm-generic/errno.h
  */
+
+#ifndef LINUX_USER_ERRNO_DEFS_H
+#define LINUX_USER_ERRNO_DEFS_H
+
 #define TARGET_EPERM            1      /* Operation not permitted */
 #define TARGET_ENOENT           2      /* No such file or directory */
 #define TARGET_ESRCH            3      /* No such process */
  * clash with a valid guest errno now or in the future.
  */
 #define TARGET_QEMU_ESIGRETURN 513     /* Return from signal */
+
+#endif