Browse Source

vsprintf.h is gPXE-specific; move it to include/gpxe

tags/v0.9.3
Michael Brown 17 years ago
parent
commit
f4c1e564a1
3 changed files with 5 additions and 5 deletions
  1. 1
    1
      src/core/vsprintf.c
  2. 1
    1
      src/hci/mucurses/print.c
  3. 3
    3
      src/include/gpxe/vsprintf.h

+ 1
- 1
src/core/vsprintf.c View File

@@ -21,7 +21,7 @@
21 21
 #include <stdio.h>
22 22
 #include <console.h>
23 23
 #include <errno.h>
24
-#include <vsprintf.h>
24
+#include <gpxe/vsprintf.h>
25 25
 
26 26
 /** @file */
27 27
 

+ 1
- 1
src/hci/mucurses/print.c View File

@@ -1,7 +1,7 @@
1 1
 #include <curses.h>
2 2
 #include <stdio.h>
3 3
 #include <stddef.h>
4
-#include <vsprintf.h>
4
+#include <gpxe/vsprintf.h>
5 5
 #include "mucurses.h"
6 6
 
7 7
 /** @file

src/include/vsprintf.h → src/include/gpxe/vsprintf.h View File

@@ -1,5 +1,5 @@
1
-#ifndef VSPRINTF_H
2
-#define VSPRINTF_H
1
+#ifndef _GPXE_VSPRINTF_H
2
+#define _GPXE_VSPRINTF_H
3 3
 
4 4
 /** @file
5 5
  *
@@ -64,4 +64,4 @@ struct printf_context {
64 64
 
65 65
 extern size_t vcprintf ( struct printf_context *ctx, const char *fmt,
66 66
 			 va_list args );
67
-#endif /* VSPRINTF_H */
67
+#endif /* _GPXE_VSPRINTF_H */

Loading…
Cancel
Save