20 lines
339 B
C
20 lines
339 B
C
/*
|
|
* Copyright 2007 The Android Open Source Project
|
|
*
|
|
* Common defines and includes.
|
|
*/
|
|
#ifndef _WRAPSIM_COMMON_H
|
|
#define _WRAPSIM_COMMON_H
|
|
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "BitVector.h"
|
|
#include "FakeDev.h"
|
|
#include "Log.h"
|
|
#include "SimMgr.h"
|
|
#include "Globals.h"
|
|
#include "Util.h"
|
|
|
|
#endif /*_WRAPSIM_COMMON_H*/
|