1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Preparations for release.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15075 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-12-11 08:55:29 +00:00
parent 26b8b9efbf
commit 9ab31bb996
19 changed files with 59 additions and 51 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stdlib.h,v 1.15 2005-11-28 09:53:51 obarthel Exp $
* $Id: stdlib.h,v 1.16 2005-12-11 08:55:29 obarthel Exp $
*
* :ts=4
*
@ -165,7 +165,9 @@ extern int rand_r(unsigned int * seed);
* memory from the system rather than the current stack frame, which will
* ease stack requirements but may not release allocate memory immediately.
* In order to do so, add #define __USE_CLIB2_ALLOCA to your program, or
* -D__USE_CLIB2_ALLOCA to your build makefile.
* -D__USE_CLIB2_ALLOCA to your build makefile. For GCC you will also have
* to compile your program with the -fno-builtin switch to override the
* built-in alloca() function.
*/
#if defined(alloca)