diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2016-08-26 14:12:24 +0200 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2016-08-26 14:12:24 +0200 |
commit | 24b9713b965c098b40403b5a9a8327cce603e9fe (patch) | |
tree | 679efec65c2e2f6e582d06ddc24a4aa6a8f362ed /src | |
parent | 5c0a3df6cf82aa7bb425a7c109d895dbde66c323 (diff) |
Fix nullary function declarations in cmark.h
Fixes strict prototypes warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/cmark.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmark.h b/src/cmark.h index d5b7f89..6ed7eb0 100644 --- 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 * |