summaryrefslogtreecommitdiffstats
path: root/include/plist/plist.h
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2009-03-27 17:41:10 +0100
committerGravatar Jonathan Beck2009-03-27 17:41:10 +0100
commit623314bb8de2a6ac71e44833d1f1a796274d3871 (patch)
treeb932030862a932aae45a5d1b514d7d2c3b1a3f0b /include/plist/plist.h
parent480fd72fc285fc4f42a7618147cce646ba337ebe (diff)
downloadlibplist-623314bb8de2a6ac71e44833d1f1a796274d3871.tar.gz
libplist-623314bb8de2a6ac71e44833d1f1a796274d3871.tar.bz2
Use (void) instead of () in functions prototype.
Diffstat (limited to 'include/plist/plist.h')
-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