Protect against multiple inclusion.

This commit is contained in:
Maxim Sobolev 2001-01-24 09:06:42 +00:00
parent 5c9a541b66
commit 0e2fa3bb50
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=71519

View File

@ -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_ */