diff --git a/lib/libvgl/vgl.h b/lib/libvgl/vgl.h index 6e201ecd10c4..710828b2518b 100644 --- a/lib/libvgl/vgl.h +++ b/lib/libvgl/vgl.h @@ -28,6 +28,9 @@ * $FreeBSD$ */ +#ifndef _VGL_H_ +#define _VGL_H_ + #include #include #include @@ -147,3 +150,5 @@ void VGLBlankDisplay(int blank); int VGLTextSetFontFile(char *filename); void VGLBitmapPutChar(VGLBitmap *Object, int x, int y, byte ch, byte fgcol, byte bgcol, int fill, int dir); void VGLBitmapString(VGLBitmap *Object, int x, int y, char *str, byte fgcol, byte bgcol, int fill, int dir); + +#endif /* !_VGL_H_ */