27 lines
403 B
C
27 lines
403 B
C
// Copyright 2007 Georgia Institute of Technology. All rights reserved.
|
|
/**
|
|
* @file base.h
|
|
*
|
|
* Includes all of FASTlib's bare necessities.
|
|
*
|
|
* @see common.h
|
|
* @see debug.h
|
|
* @see compiler.h
|
|
* @see cc.h
|
|
* @see otrav.h
|
|
*/
|
|
|
|
#ifndef BASE_H
|
|
#define BASE_H
|
|
|
|
#include "common.h"
|
|
#include "debug.h"
|
|
|
|
#ifdef __cplusplus
|
|
#include "cc.h"
|
|
#include "ccmem.h"
|
|
#include "otrav.h"
|
|
#endif
|
|
|
|
#endif /* BASE_H */
|