diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:48 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:48 +0000 |
commit | 292c4cff26687e6ef86c285b97813ab587daf009 (patch) | |
tree | b12025c2277345526ba7abd97222be0670e28198 /os/access.c | |
parent | c062d7f96f47bdd31640be1fbce682d0774db3d9 (diff) |
Fix includes right throughout the Xserver tree:
change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h;
change "foo.h", "extensions/foo.h" and "X11/foo.h" to
<X11/extensions/foo.h> for extension headers, e.g. Xv.h;
change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.
Diffstat (limited to 'os/access.c')
-rw-r--r-- | os/access.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/os/access.c b/os/access.c index d687e3515..727fa26f0 100644 --- a/os/access.c +++ b/os/access.c @@ -1,5 +1,5 @@ /* $Xorg: access.c,v 1.5 2001/02/09 02:05:23 xorgcvs Exp $ */ -/* $XdotOrg: xc/programs/Xserver/os/access.c,v 1.6 2004/10/17 10:46:14 herrb Exp $ */ +/* $XdotOrg: xc/programs/Xserver/os/access.c,v 1.7 2004/11/15 15:06:50 ago Exp $ */ /*********************************************************** Copyright 1987, 1998 The Open Group @@ -63,10 +63,10 @@ SOFTWARE. #include <stdio.h> #include <stdlib.h> -#include <X11/Xtrans.h> +#include <X11/Xtrans/Xtrans.h> #include <X11/Xauth.h> -#include <X.h> -#include <Xproto.h> +#include <X11/X.h> +#include <X11/Xproto.h> #include "misc.h" #include "site.h" #include <errno.h> @@ -197,7 +197,7 @@ SOFTWARE. #ifdef XCSECURITY #define _SECURITY_SERVER -#include "extensions/security.h" +#include <X11/extensions/security.h> #endif #ifndef PATH_MAX |