Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
d3e34186f69a7c89f2a3ac418e901b4d6e687773
/
.
/
Tests
/
X11
/
X11.c
blob: 9f002f6a2b03a771bc47c806b36927d717766c11 [
file
] [
log
] [
blame
]
#include
"stdio.h"
#ifdef
CMAKE_HAS_X
# include <X11/Xlib.h>
# include <X11/Xutil.h>
int
main
(
void
)
{
printf
(
"There is X on this computer\n"
);
return
0
;
}
#else
int
main
(
void
)
{
printf
(
"No X on this computer\n"
);
return
0
;
}
#endif