summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds/include/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/arm/nds/include/types.h')
-rw-r--r--c/src/lib/libbsp/arm/nds/include/types.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/c/src/lib/libbsp/arm/nds/include/types.h b/c/src/lib/libbsp/arm/nds/include/types.h
deleted file mode 100644
index f8dcfbad6f..0000000000
--- a/c/src/lib/libbsp/arm/nds/include/types.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (c) 2008 by Matthieu Bucchianeri <mbucchia@gmail.com>
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- *
- * http://www.rtems.org/license/LICENSE
- */
-
-#ifndef BSP_NDS_TYPES_H_
-#define BSP_NDS_TYPES_H_
-
-#include <stdint.h>
-
-/*
- * volatile types for registers.
- */
-
-typedef volatile char vint8_t;
-typedef volatile short int vint16_t;
-typedef volatile int vint32_t;
-
-typedef volatile unsigned char vuint8_t;
-typedef volatile unsigned short int vuint16_t;
-typedef volatile unsigned int vuint32_t;
-
-#endif