miext: add/fix include guards where missing/broken
Skipped headers designed for multiple or non-trivial inclusion: * miext/shadow/shrotpack.h * miext/shadow/shrotpackYX.h Signed-off-by: Mike Gelfand <mikedld@mikedld.com>
This commit is contained in:
parent
32b26ccf9e
commit
565309bb33
|
@ -27,6 +27,9 @@
|
||||||
* DEALINGS IN THE SOFTWARE.
|
* DEALINGS IN THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef XSERVER_C2P_CORE_H
|
||||||
|
#define XSERVER_C2P_CORE_H
|
||||||
|
|
||||||
#include "os/bug_priv.h"
|
#include "os/bug_priv.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -186,3 +189,5 @@ static inline void transp2x(CARD32 d[], unsigned int n)
|
||||||
_transp(d, 1, 0, n, mask);
|
_transp(d, 1, 0, n, mask);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* XSERVER_C2P_CORE_H */
|
||||||
|
|
Loading…
Reference in New Issue