]> git.saurik.com Git - apple/system_cmds.git/blobdiff - sa.tproj/pdb.c
system_cmds-735.20.1.tar.gz
[apple/system_cmds.git] / sa.tproj / pdb.c
index 66c99f1d00f7e49a2ad6511fd3f65468404b1bc4..928aad9eb83fe14080c71eb62d8543e7c6e6b42d 100644 (file)
@@ -94,14 +94,14 @@ v1_to_v2(DBT *key __unused, DBT *data)
 
 /* Copy pdb_file to in-memory pacct_db. */
 int
 
 /* Copy pdb_file to in-memory pacct_db. */
 int
-pacct_init()
+pacct_init(void)
 {
        return (db_copy_in(&pacct_db, pdb_file, "process accounting",
            NULL, v1_to_v2));
 }
 
 void
 {
        return (db_copy_in(&pacct_db, pdb_file, "process accounting",
            NULL, v1_to_v2));
 }
 
 void
-pacct_destroy()
+pacct_destroy(void)
 {
        db_destroy(pacct_db, "process accounting");
 }
 {
        db_destroy(pacct_db, "process accounting");
 }
@@ -150,14 +150,14 @@ pacct_add(const struct cmdinfo *ci)
 
 /* Copy in-memory pacct_db to pdb_file. */
 int
 
 /* Copy in-memory pacct_db to pdb_file. */
 int
-pacct_update()
+pacct_update(void)
 {
        return (db_copy_out(pacct_db, pdb_file, "process accounting",
            NULL));
 }
 
 void
 {
        return (db_copy_out(pacct_db, pdb_file, "process accounting",
            NULL));
 }
 
 void
-pacct_print()
+pacct_print(void)
 {
        BTREEINFO bti;
        DBT key, data, ndata;
 {
        BTREEINFO bti;
        DBT key, data, ndata;
@@ -466,4 +466,4 @@ print_ci(const struct cmdinfo *cip, const struct cmdinfo *totalcip)
 
        printf("  %s\n", cip->ci_comm);
 }
 
        printf("  %s\n", cip->ci_comm);
 }
-#endif
\ No newline at end of file
+#endif