summaryrefslogtreecommitdiff
path: root/src/utility.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utility.h')
-rw-r--r--src/utility.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/utility.h b/src/utility.h
index 008a95c38..e2a6afdea 100644
--- a/src/utility.h
+++ b/src/utility.h
@@ -1323,10 +1323,17 @@ private:
MutexedQueue< GetRequest<Key, T, Caller, CallerData> > m_queue;
};
-// Pseudo-random (VC++ rand() sucks)
+/*
+ Pseudo-random (VC++ rand() sucks)
+*/
int myrand(void);
void mysrand(unsigned seed);
#define MYRAND_MAX 32767
+/*
+ TODO: Some kind of a thing that stores arbitary data related to
+ 2D coordinate points
+*/
+
#endif