1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-20 04:48:06 +01:00

fixed #includes

This commit is contained in:
kojima
2000-04-01 02:14:12 +00:00
parent 5b05c9607c
commit e7f7030e1b
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ in this Software without prior written authorization from the X Consortium.
#include <X11/Xlib.h> #include <X11/Xlib.h>
#include <X11/Xatom.h> #include <X11/Xatom.h>
#include <X11/Xutil.h> #include <X11/Xutil.h>
#include <X11/Xmu/StdCmap.h> #include "StdCmap.h"
static Status lookup(); static Status lookup();

View File

@@ -35,7 +35,7 @@ in this Software without prior written authorization from the X Consortium.
#include <X11/Xlib.h> #include <X11/Xlib.h>
#include <X11/Xatom.h> #include <X11/Xatom.h>
#include <X11/Xutil.h> #include <X11/Xutil.h>
#include <X11/Xmu/StdCmap.h> #include "StdCmap.h"
#define lowbit(x) ((x) & (~(x) + 1)) #define lowbit(x) ((x) & (~(x) + 1))