Remove (Abandoned).

This commit is contained in:
Ralf Corsepius
2008-12-17 06:41:21 +00:00
parent 52a634e998
commit 5726c42b3f

View File

@@ -1,24 +0,0 @@
/**
* @file rtems/stdint.h
*
* Wrapper to <stdint.h>, switching to <inttypes.h> on systems
* only having <inttypes.h> (e.g. Solaris-5.7).
*/
/*
* $Id$
*/
#ifndef _RTEMS_STDINT_H
#define _RTEMS_STDINT_H
#include <rtems/score/cpuopts.h>
#if RTEMS_USES_STDINT_H
#include <stdint.h>
#else
#include <inttypes.h>
#endif
#endif