Alexei Podtelezhnikov pushed to branch master at FreeType / FreeType Demo Programs
Commits:
-
6f46a380
by Alexei Podtelezhnikov at 2022-01-22T22:48:16-05:00
3 changed files:
Changes:
1 | 1 |
#include "grobjs.h"
|
2 |
+#include <stdlib.h>
|
|
2 | 3 |
#include <string.h>
|
3 | 4 |
|
4 | 5 |
int grError = 0;
|
... | ... | @@ -15,7 +15,7 @@ |
15 | 15 |
#ifndef GROBJS_H_
|
16 | 16 |
#define GROBJS_H_
|
17 | 17 |
|
18 |
-#include <stdlib.h>
|
|
18 |
+#include <stddef.h>
|
|
19 | 19 |
|
20 | 20 |
#include "graph.h"
|
21 | 21 |
#include "grconfig.h"
|
... | ... | @@ -19,8 +19,6 @@ |
19 | 19 |
*
|
20 | 20 |
******************************************************************/
|
21 | 21 |
|
22 |
-#include <stdio.h>
|
|
23 |
-#include <stdlib.h>
|
|
24 | 22 |
#include <string.h>
|
25 | 23 |
|
26 | 24 |
#define WIN32_LEAN_AND_MEAN
|
... | ... | @@ -40,7 +38,9 @@ |
40 | 38 |
#define xxDEBUG
|
41 | 39 |
|
42 | 40 |
#ifdef DEBUG
|
41 |
+# include <stdio.h>
|
|
43 | 42 |
# include <stdarg.h>
|
43 |
+# include <ctype.h>
|
|
44 | 44 |
|
45 | 45 |
static void LogMessage( const char* fmt, ... )
|
46 | 46 |
{
|