Don't build relocate() under KEEP_IT_REAL

This commit is contained in:
Michael Brown
2005-04-09 17:05:35 +00:00
parent 2fa14f2f1d
commit 44eee81d11
2 changed files with 13 additions and 0 deletions

View File

@@ -1,6 +1,15 @@
#ifndef RELOCATE_H
#define RELOCATE_H
#ifdef KEEP_IT_REAL
/* relocate() is conceptually impossible with KEEP_IT_REAL */
#define relocate()
#else
extern void relocate ( void );
#endif
#endif /* RELOCATE_H */