bump version to 1.0.28
[uclibc-ng.git] / libc / stdlib / rand.c
blob0117d890bf4a53d47ae1320b398ae57d209b033e
1 /*
2 * rand for uClibc
3 * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
4 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
5 */
7 #include <stdlib.h>
10 int rand(void)
12 return (int)random();