You've already forked hardkernel-uboot
mirror of
https://github.com/archr-linux/hardkernel-uboot.git
synced 2026-03-31 15:05:07 -07:00
Since we need to realize standard library function other than use them with gcc tool chain in U-Boot. So add standard library function here. Change-Id: I10009c5bbe31fabacd929df3c44218ae9c6a885f Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
15 lines
199 B
C
15 lines
199 B
C
/*
|
|
* Copyright (C) 2013 Google Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __STDLIB_H_
|
|
#define __STDLIB_H_
|
|
|
|
#include <malloc.h>
|
|
|
|
int atoi(const char *nptr);
|
|
|
|
#endif /* __STDLIB_H_ */
|