Procházet zdrojové kódy

Fixed missing `stdio.h` include

`xml.h` required `stdio.h` to be included first, which is unfortunate. Switch `xml.c` include order to include `xml.h` first in order to catch such mistakes in the future.
master
ooxi před 1 rokem
rodič
revize
66caec13c9
2 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. +2
    -1
      src/xml.c
  2. +2
    -1
      src/xml.h

+ 2
- 1
src/xml.c Zobrazit soubor

@@ -20,6 +20,8 @@
*
* 3. This notice may not be removed or altered from any source distribution.
*/
#include "xml.h"

#ifdef XML_PARSER_VERBOSE
#include <alloca.h>
#endif
@@ -34,7 +36,6 @@
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "xml.h"





+ 2
- 1
src/xml.h Zobrazit soubor

@@ -27,9 +27,10 @@
/**
* Includes
*/
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <stdbool.h>

#ifdef __cplusplus
extern "C" {


Načítá se…
Zrušit
Uložit