blob: a75129d6d562aa317baadad6828c35bd7ad4b4fa [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors
// Copyright (c) 2008-2014 Travis Geiselbrecht
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#pragma once
#include <zircon/compiler.h>
#include <sys/types.h>
__BEGIN_CDECLS
#define RAND_MAX (0x7fffffff)
int rand(void);
void srand(unsigned int seed);
__END_CDECLS