mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 00:41:08 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
31 lines
682 B
C
31 lines
682 B
C
/*
|
|
* \brief Mini C standard library
|
|
* \author Christian Helmuth
|
|
* \date 2008-07-24
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2008-2013 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__MINI_C__STDLIB_H_
|
|
#define _INCLUDE__MINI_C__STDLIB_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
int abs(int j);
|
|
|
|
void *malloc(size_t size);
|
|
void *calloc(size_t nmemb, size_t size);
|
|
void free(void *ptr);
|
|
|
|
void abort(void);
|
|
long int strtol(const char *nptr, char **endptr, int base);
|
|
long atol(const char *nptr);
|
|
double strtod(const char *nptr, char **endptr);
|
|
|
|
#endif /* _INCLUDE__MINI_C__STDLIB_H_ */
|