Skip to content

Commit d7f3e35

Browse files
authored
Move cpp includes out of extern "C" block
1 parent cbd8eae commit d7f3e35

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

extensions/include/cmark-gfm-core-extensions.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
#ifndef CMARK_GFM_CORE_EXTENSIONS_H
22
#define CMARK_GFM_CORE_EXTENSIONS_H
33

4+
#include "cmark-gfm-extension_api.h"
5+
6+
#include <stdbool.h>
7+
#include <stdint.h>
8+
49
#ifdef __cplusplus
510
extern "C" {
611
#endif
712

8-
#include "cmark-gfm-extension_api.h"
913
#include "export.h"
1014

11-
#include <stdbool.h>
12-
#include <stdint.h>
13-
1415
CMARK_GFM_EXPORT
1516
void cmark_gfm_core_extensions_ensure_registered(void);
1617

0 commit comments

Comments
 (0)