aboutsummaryrefslogtreecommitdiff
path: root/trand.h
blob: 7286c45d7ba9066e469f734acb51cd14b5c38afb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TRAND_H
 #define TRAND_H

  #ifndef DEF_NTHREAD
	#define DEF_NTHREAD 4
  #endif

#include <pthread.h>
#include <time.h>
#include <stdlib.h>

int ntrand(unsigned long long n);
int trand();
int strand();

#endif