moved struct timing_env to .c file, added config.h
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 21 Dec 2004 15:52:23 +0000 (15:52 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 21 Dec 2004 15:52:23 +0000 (15:52 +0000)
[r4697]

ir/ana2/timing.c
ir/ana2/timing.h

index 0f6dc26..cb1088a 100644 (file)
@@ -16,6 +16,9 @@
 /*
   Timing stuff.  Not really part of ana2, but where else should it go.
 */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <stdlib.h>
 #include <string.h>
 
 # include "timing.h"
 
+struct timing_env
+{
+  struct timeval *start;
+  struct timeval *end;
+};
+
 \f
 /*
 Helpers
@@ -51,7 +60,7 @@ timeval_subtract (struct timeval *x, struct timeval *y)
   Public Interface
 */
 timing_t *
-start_timing ()
+start_timing (void)
 {
   timing_t *t = (timing_t*) malloc (sizeof (timing_t));
 
@@ -87,6 +96,9 @@ end_timing (timing_t *t)
 \f
 /*
   $Log$
+  Revision 1.2  2004/12/21 15:52:23  beck
+  moved struct timing_env to .c file, added config.h
+
   Revision 1.1  2004/10/29 18:55:52  liekweg
   (mostly) generic timimg
 
index b43f0b7..b149383 100644 (file)
 /*
    Data structures
  */
-typedef struct timing_env
-{
-  struct timeval *start;
-  struct timeval *end;
-} timing_t;
+typedef struct timing_env timing_t;
 
 /*
   Protos
@@ -36,6 +32,9 @@ int       end_timing   (timing_t*);
 \f
 /*
   $Log$
+  Revision 1.2  2004/12/21 15:52:23  beck
+  moved struct timing_env to .c file, added config.h
+
   Revision 1.1  2004/10/29 18:55:52  liekweg
   (mostly) generic timimg