Move cpp includes out of extern "C" block

This commit is contained in:
Jeremy Day
2025-08-18 22:53:55 -07:00
parent cbd8eae068
commit b11ff4736e
2 changed files with 5 additions and 4 deletions

View File

@@ -1,16 +1,16 @@
#ifndef CMARK_GFM_CORE_EXTENSIONS_H
#define CMARK_GFM_CORE_EXTENSIONS_H
#ifdef __cplusplus
extern "C" {
#endif
#include "cmark-gfm-extension_api.h"
#include "export.h"
#include <stdbool.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
CMARK_GFM_EXPORT
void cmark_gfm_core_extensions_ensure_registered(void);

View File

@@ -5,6 +5,7 @@ module cmark_gfm {
header "buffer.h"
header "chunk.h"
header "cmark_ctype.h"
header "export.h"
header "footnotes.h"
header "houdini.h"
header "html.h"