Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / openbios / include / libc / stdlib.h
1 /*
2  *   Creation Date: <2003/12/19 18:52:20 samuel>
3  *   Time-stamp: <2003/12/19 18:52:21 samuel>
4  *
5  *      <stdlib.h>
6  *
7  *
8  *   Copyright (C) 2003 Samuel Rydh (samuel@ibrium.se)
9  *
10  *   This program is free software; you can redistribute it and/or
11  *   modify it under the terms of the GNU General Public License
12  *   version 2
13  *
14  */
15
16 #ifndef _H_STDLIB
17 #define _H_STDLIB
18
19 extern void     *malloc( int size );
20 extern void     free( void *ptr );
21 extern void     *realloc( void *ptr, size_t size );
22
23 /* should perhaps go somewhere else... */
24 extern void     qsort( void *base, size_t nmemb, size_t size, int (*compar)(const void*, const void*));
25
26 #endif   /* _H_STDLIB */