summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-src/goo/gtypes_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/poppler/poppler-src/goo/gtypes_p.h')
-rw-r--r--Build/source/libs/poppler/poppler-src/goo/gtypes_p.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/Build/source/libs/poppler/poppler-src/goo/gtypes_p.h b/Build/source/libs/poppler/poppler-src/goo/gtypes_p.h
deleted file mode 100644
index cc4866e1389..00000000000
--- a/Build/source/libs/poppler/poppler-src/goo/gtypes_p.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * gtypes_p.h
- *
- * Some useful simple types.
- *
- * Copyright (C) 2011 Adrian Johnson <ajohnson@redneon.com>
- */
-
-#ifndef GTYPES_P_H
-#define GTYPES_P_H
-
-#include "config.h"
-
-/*
- * Define precise integer types.
- */
-#if HAVE_STDINT_H
-#include <stdint.h>
-#elif _MSC_VER
-typedef signed __int8 int8_t;
-typedef unsigned __int8 uint8_t;
-typedef signed __int16 int16_t;
-typedef unsigned __int16 uint16_t;
-typedef signed __int32 int32_t;
-typedef unsigned __int32 uint32_t;
-typedef signed __int64 int64_t;
-typedef unsigned __int64 uint64_t;
-#endif
-
-#endif