6cc948eef8
git-svn-id: file:///srv/dev-disk-by-uuid-17e88007-4d0c-45e0-8757-cacfcc458630/repositories/svn/Diplomarbeit@113 9fe90eed-be63-e94b-8204-d34ff4c2ff93
43 lines
823 B
C
43 lines
823 B
C
/***************************************************************************
|
|
**
|
|
**
|
|
** Master include file
|
|
**
|
|
** Used with ARM IAR C/C++ Compiler
|
|
**
|
|
** (c) Copyright IAR Systems 2007
|
|
**
|
|
** $Revision: 1.0 $
|
|
**
|
|
***************************************************************************/
|
|
|
|
#ifndef __INCLUDES_H
|
|
#define __INCLUDES_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <limits.h>
|
|
#include <assert.h>
|
|
|
|
#include "arm_comm.h"
|
|
#include "board.h"
|
|
|
|
#include "lpc23xx_enet.h"
|
|
|
|
#include "clock-arch.h"
|
|
|
|
#include "timer.h"
|
|
#include "uip-conf.h"
|
|
#include "uipopt.h"
|
|
#include "uip_arp.h"
|
|
#include "uip.h"
|
|
|
|
#include "httpd.h"
|
|
|
|
#endif // __INCLUDES_H
|