diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-01-24 09:06:42 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-01-24 09:06:42 +0000 |
commit | 8ec9f8bcf7dd05c8c035d406c155c6e611e82fde (patch) | |
tree | e92a3489aa3fb9652790ce88ad58a6f0bdf2772e /lib/libvgl | |
parent | 367aa44ae5aaa751693a35fe7f0a2c5408d31e64 (diff) | |
download | FreeBSD-src-8ec9f8bcf7dd05c8c035d406c155c6e611e82fde.zip FreeBSD-src-8ec9f8bcf7dd05c8c035d406c155c6e611e82fde.tar.gz |
Protect against multiple inclusion.
Diffstat (limited to 'lib/libvgl')
-rw-r--r-- | lib/libvgl/vgl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libvgl/vgl.h b/lib/libvgl/vgl.h index 6e201ec..710828b 100644 --- a/lib/libvgl/vgl.h +++ b/lib/libvgl/vgl.h @@ -28,6 +28,9 @@ * $FreeBSD$ */ +#ifndef _VGL_H_ +#define _VGL_H_ + #include <stdlib.h> #include <unistd.h> #include <string.h> @@ -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_ */ |