mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-03 12:35:02 +00:00
Protect against multiple inclusion.
This commit is contained in:
parent
5c9a541b66
commit
0e2fa3bb50
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=71519
@ -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_ */
|
||||
|
Loading…
Reference in New Issue
Block a user