aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_timer.h
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 18:47:09 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 18:47:09 +0200
commit044dc5a93c33d7aa4c9c98a626890c16446a56fc (patch)
tree23cc17a595d36a35ad9cb50e3ab18c2956b5f65c /include/gensvm_timer.h
parentMove includes to header (diff)
downloadgensvm-044dc5a93c33d7aa4c9c98a626890c16446a56fc.tar.gz
gensvm-044dc5a93c33d7aa4c9c98a626890c16446a56fc.zip
major refactor of the code
Diffstat (limited to 'include/gensvm_timer.h')
-rw-r--r--include/gensvm_timer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/gensvm_timer.h b/include/gensvm_timer.h
index 29c45cd..11e61e5 100644
--- a/include/gensvm_timer.h
+++ b/include/gensvm_timer.h
@@ -12,8 +12,10 @@
#ifndef GENSVM_TIMER_H
#define GENSVM_TIMER_H
-double elapsed_time(clock_t s_time, clock_t e_time);
+// includes
+#include "globals.h"
-void get_time_string(char *buffer);
+// function declarations
+double gensvm_elapsed_time(clock_t s_time, clock_t e_time);
#endif