summaryrefslogtreecommitdiff
path: root/xenon.h
blob: 0b2141f1565dea1480a0bbdfea0166a696760950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _xenon_h_
#define _xenon_h_

#define XLIB_ILLEGAL_ACCESS
#include <X11/Xlib.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>

#define min(a,b) ((a)<(b)?(a):(b))
#define max(a,b) ((a)>(b)?(a):(b))

#endif