summaryrefslogtreecommitdiff
path: root/src/cmd/dice/dice.c
blob: b31670f67f2c3e42cd7a61a7de4a39ed086c649e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int
main (void)
{
	int sides = 6;
	time_t t;
	srand((unsigned) time(&t));

	printf("%d\n", (rand() % sides) + 1);

	return 0;
}