- Commit
- c9449a9f55c93d27d161b7425ebf951e4374ef1e
- Parent
- 5c0a3df6cf82aa7bb425a7c109d895dbde66c323
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Merge pull request #152 from nwellnhof/function-prototypes
Fix nullary function declarations in cmark.h
My personal build of CMark ✏️
Merge pull request #152 from nwellnhof/function-prototypes
Fix nullary function declarations in cmark.h
1 file changed, 2 insertions, 2 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | src/cmark.h | 4 | 2 | 2 |
diff --git a/src/cmark.h b/src/cmark.h @@ -590,13 +590,13 @@ char *cmark_render_latex(cmark_node *root, int options, int width); * In hexadecimal format, the number 0x010203 represents version 1.2.3. */ CMARK_EXPORT -int cmark_version(); +int cmark_version(void); /** The library version string for runtime checks. Also available as * macro CMARK_VERSION_STRING for compile time checks. */ CMARK_EXPORT -const char *cmark_version_string(); +const char *cmark_version_string(void); /** # AUTHORS *