genode/repos/demo/include/mini_c/stdlib.h
Norman Feske ca971bbfd8 Move repositories to 'repos/' subdirectory
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
2014-05-14 16:08:00 +02:00

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_ */