aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThomas Huth <thuth@linux.vnet.ibm.com>2011-10-04 14:14:55 +0200
committerThomas Huth <thuth@linux.vnet.ibm.com>2011-10-12 12:50:05 +0200
commitd823eb86d66cd4515e431d059526217655e9d198 (patch)
treea2fead5bf62c410b529b9da29db15445826d92d3 /include
parentf227b3301221bb1bbcd30d4739115a875fb1c434 (diff)
downloadSLOF-d823eb86d66cd4515e431d059526217655e9d198.zip
SLOF-d823eb86d66cd4515e431d059526217655e9d198.tar.gz
SLOF-d823eb86d66cd4515e431d059526217655e9d198.tar.bz2
Removed obsolete types.h header files
Our "portable" types are defined in stdint.h, so there is no need for the types.h header files anymore. Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/types.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/types.h b/include/types.h
deleted file mode 100644
index cbadd7c..0000000
--- a/include/types.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/******************************************************************************
- * Copyright (c) 2004, 2008 IBM Corporation
- * All rights reserved.
- * This program and the accompanying materials
- * are made available under the terms of the BSD License
- * which accompanies this distribution, and is available at
- * http://www.opensource.org/licenses/bsd-license.php
- *
- * Contributors:
- * IBM Corporation - initial implementation
- *****************************************************************************/
-
-#ifndef _TYPES_H
-#define _TYPES_H
-
-#warning "This file is obsolete. Please use #include <stdint.h> instead."
-
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned int uint32_t;
-typedef unsigned long long uint64_t;
-
-typedef signed char int8_t;
-typedef signed short int16_t;
-typedef signed int int32_t;
-typedef signed long long int64_t;
-
-#endif