You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
338 B
18 lines
338 B
/*
|
|
* Copyright (c) Hisilicon Technologies Co., Ltd. 2014-2020. All rights reserved.
|
|
* Description: pl01x config
|
|
* Author: SmartMedia_BSP
|
|
* Create: 2014-06-04
|
|
*/
|
|
|
|
#ifndef STDLIBH
|
|
#define STDLIBH
|
|
|
|
#include <stddef.h>
|
|
|
|
int rand(void);
|
|
void srand(unsigned int seed);
|
|
uint32_t div64_32(uint64_t *num, uint32_t div);
|
|
|
|
#endif /* STDLIBH */
|