aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-04-08 15:49:55 +0200
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-04-11 18:29:56 +0200
commit2e14003ebb43466f79b13da585abec41ec191284 (patch)
tree10b329361cbded421d4082d91b4a3fda8e6a8e1d
parent4e056c97946b690fd623e4bea6ef31ea74f66bcf (diff)
downloadlibmicrohttpd-master.tar.gz
libmicrohttpd-master.zip
microhttpd.h: workaround for uncrustify bugHEADmaster
-rw-r--r--src/include/microhttpd.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index e83fdad3..12b872fc 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -80,13 +80,18 @@
80#ifndef MHD_MICROHTTPD_H 80#ifndef MHD_MICROHTTPD_H
81#define MHD_MICROHTTPD_H 81#define MHD_MICROHTTPD_H
82 82
83#ifdef __cplusplus 83#ifndef __cplusplus
84extern "C" 84# define MHD_C_DECLRATIONS_START_HERE_ /* Empty */
85{ 85# define MHD_C_DECLRATIONS_FINISH_HERE_ /* Empty */
86#if 0 /* keep Emacsens' auto-indent happy */ 86#else /* __cplusplus */
87} 87/* *INDENT-OFF* */
88#endif 88# define MHD_C_DECLRATIONS_START_HERE_ extern "C" {
89#endif 89# define MHD_C_DECLRATIONS_FINISH_HERE_ }
90/* *INDENT-ON* */
91#endif /* __cplusplus */
92
93
94MHD_C_DECLRATIONS_START_HERE_
90 95
91 96
92/** 97/**
@@ -6519,11 +6524,6 @@ _MHD_EXTERN enum MHD_Result
6519MHD_is_feature_supported (enum MHD_FEATURE feature); 6524MHD_is_feature_supported (enum MHD_FEATURE feature);
6520 6525
6521 6526
6522#ifdef __cplusplus 6527MHD_C_DECLRATIONS_FINISH_HERE_
6523#if 0 /* keep Emacsens' auto-indent happy */
6524{
6525#endif
6526}
6527#endif
6528 6528
6529#endif 6529#endif