summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-01-10 00:55:45 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-01-10 00:55:45 +0000
commit935c80d5e6ae1f562c47591f10e9102cedd93f8c (patch)
tree66412a83f4893cdd194b97b489f2673d39cb9ef0 /include/asterisk
parent662c9aeb23e569622a9e9824fee82a5dbc484cb0 (diff)
Bug 5961 - new RAND() function
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7920 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/utils.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asterisk/utils.h b/include/asterisk/utils.h
index 8e1c5a9dd..8fd42445b 100644
--- a/include/asterisk/utils.h
+++ b/include/asterisk/utils.h
@@ -235,4 +235,10 @@ char *ast_process_quotes_and_slashes(char *start, char find, char replace_with);
int getloadavg(double *list, int nelem);
#endif
+#ifdef linux
+#define ast_random random
+#else
+long int ast_random(void);
+#endif
+
#endif /* _ASTERISK_UTILS_H */