summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/plist/plist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h
index 4547f18..7bdd00a 100644
--- a/include/plist/plist.h
+++ b/include/plist/plist.h
@@ -94,7 +94,7 @@ extern "C" {
94 * @return the created plist 94 * @return the created plist
95 * @sa #plist_type 95 * @sa #plist_type
96 */ 96 */
97 PLIST_API plist_t plist_new_dict(); 97 PLIST_API plist_t plist_new_dict(void);
98 98
99/** 99/**
100 * Create a new root plist_t type #PLIST_ARRAY 100 * Create a new root plist_t type #PLIST_ARRAY
@@ -102,7 +102,7 @@ extern "C" {
102 * @return the created plist 102 * @return the created plist
103 * @sa #plist_type 103 * @sa #plist_type
104 */ 104 */
105 PLIST_API plist_t plist_new_array(); 105 PLIST_API plist_t plist_new_array(void);
106 106
107/** 107/**
108 * Destruct a plist_t node and all its children recursively 108 * Destruct a plist_t node and all its children recursively