added dbl include guard

This commit is contained in:
Jeff Hill
2000-02-15 22:00:50 +00:00
parent f3bcb99847
commit 86207a8540
2 changed files with 26 additions and 0 deletions

View File

@@ -1,4 +1,15 @@
/*
* $Id$
*
*
* Author: Jeff Hill
*
*/
#ifndef osiEventh
#define osiEventh
#include "osiSem.h"
#include "shareLib.h"
@@ -98,3 +109,6 @@ inline void osiEvent::show (unsigned level)
semBinaryShow (this->id, level);
}
#endif /* osiEventh */

View File

@@ -1,4 +1,15 @@
/*
* $Id$
*
*
* Author: Jeff Hill
*
*/
#ifndef osiMutexh
#define osiMutexh
#include "osiSem.h"
#include "shareLib.h"
@@ -98,3 +109,4 @@ inline void osiMutex::show (unsigned level) const
semMutexShow (this->id, level);
}
#endif /* osiMutexh */