From 994744a3edc74c88271ffe57958a08b70f9f5079 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 23 Aug 2020 18:06:11 +0200 Subject: Removed archive, Added gitignore --- .gitignore | 2 ++ libtrand.a | Bin 2728 -> 0 bytes trand.h | 14 +++++++------- 3 files changed, 9 insertions(+), 7 deletions(-) create mode 100644 .gitignore delete mode 100644 libtrand.a diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e0292b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.o +*.a diff --git a/libtrand.a b/libtrand.a deleted file mode 100644 index 70cc0e2..0000000 Binary files a/libtrand.a and /dev/null differ diff --git a/trand.h b/trand.h index 7286c45..34b96fd 100644 --- a/trand.h +++ b/trand.h @@ -1,13 +1,13 @@ #ifndef TRAND_H - #define TRAND_H +# define TRAND_H - #ifndef DEF_NTHREAD - #define DEF_NTHREAD 4 - #endif +# ifndef DEF_NTHREAD +# define DEF_NTHREAD 4 +# endif -#include -#include -#include +# include +# include +# include int ntrand(unsigned long long n); int trand(); -- cgit