]> sjero.net Git - wget/blobdiff - src/ptimer.h
[svn] Remove K&R support.
[wget] / src / ptimer.h
index 244c18367c8869445b4d9426b4b857d9c6f9ca63..1ba77cc6f923e38858763915e38646ec5f6c3127 100644 (file)
@@ -33,14 +33,13 @@ so, delete this exception statement from your version.  */
 struct ptimer;                 /* forward declaration; all struct
                                    members are private */
 
-struct ptimer *ptimer_allocate PARAMS ((void));
-struct ptimer *ptimer_new PARAMS ((void));
-void ptimer_destroy PARAMS ((struct ptimer *));
+struct ptimer *ptimer_new (void);
+void ptimer_destroy (struct ptimer *);
 
-void ptimer_reset PARAMS ((struct ptimer *));
-double ptimer_measure PARAMS ((struct ptimer *));
-double ptimer_read PARAMS ((const struct ptimer *));
+void ptimer_reset (struct ptimer *);
+double ptimer_measure (struct ptimer *);
+double ptimer_read (const struct ptimer *);
 
-double ptimer_granularity PARAMS ((void));
+double ptimer_resolution (void);
 
 #endif /* PTIMER_H */