os: move include guards up to wrap the whole file
See: https://gcc.gnu.org/onlinedocs/cppinternals/Guard-Macros.html Signed-off-by: Mike Gelfand <mikedld@mikedld.com>
This commit is contained in:
parent
824ca40d42
commit
dcd4bd61b8
|
@ -44,13 +44,13 @@ SOFTWARE.
|
|||
|
||||
******************************************************************/
|
||||
|
||||
#ifndef _OSDEP_H_
|
||||
#define _OSDEP_H_ 1
|
||||
|
||||
#ifdef HAVE_DIX_CONFIG_H
|
||||
#include <dix-config.h>
|
||||
#endif
|
||||
|
||||
#ifndef _OSDEP_H_
|
||||
#define _OSDEP_H_ 1
|
||||
|
||||
#include <X11/Xdefs.h>
|
||||
|
||||
#if defined(XDMCP) || defined(HASXDMAUTH)
|
||||
|
|
Loading…
Reference in New Issue