]> git.sur5r.net Git - cc65/blobdiff - include/stdlib.h
Working
[cc65] / include / stdlib.h
index 990a88a4427a7eba0d731e190c95c40e68d48245..32184f1faeb5af6ee58dbd72e61a85ddd8d769df 100644 (file)
@@ -1,9 +1,35 @@
-/*
- * stdlib.h
- *
- * Ullrich von Bassewitz, 02.06.1998
- *
- */
+/*****************************************************************************/
+/*                                                                           */
+/*                                stdlib.h                                  */
+/*                                                                           */
+/*                            General utilities                             */
+/*                                                                           */
+/*                                                                           */
+/*                                                                           */
+/* (C) 1998-2002 Ullrich von Bassewitz                                       */
+/*               Wacholderweg 14                                             */
+/*               D-70597 Stuttgart                                           */
+/* EMail:        uz@musoftware.de                                            */
+/*                                                                           */
+/*                                                                           */
+/* This software is provided 'as-is', without any expressed or implied       */
+/* warranty.  In no event will the authors be held liable for any damages    */
+/* arising from the use of this software.                                    */
+/*                                                                           */
+/* Permission is granted to anyone to use this software for any purpose,     */
+/* including commercial applications, and to alter it and redistribute it    */
+/* freely, subject to the following restrictions:                            */
+/*                                                                           */
+/* 1. The origin of this software must not be misrepresented; you must not   */
+/*    claim that you wrote the original software. If you use this software   */
+/*    in a product, an acknowledgment in the product documentation would be  */
+/*    appreciated but is not required.                                       */
+/* 2. Altered source versions must be plainly marked as such, and must not   */
+/*    be misrepresented as being the original software.                      */
+/* 3. This notice may not be removed or altered from any source              */
+/*    distribution.                                                          */
+/*                                                                           */
+/*****************************************************************************/
 
 
 
 
 /* Memory management */
 void* __fastcall__ malloc (size_t size);
-void* calloc (size_t count, size_t size);
+void* __fastcall__ calloc (size_t count, size_t size);
 void* realloc (void* block, size_t size);
 void __fastcall__ free (void* block);
 #ifndef __STRICT_ANSI__
-void _hadd (void* mem, size_t size);           /* Non-standard */
+void __fastcall__ _hadd (void* mem, size_t size);      /* Non-standard */
 #endif
 
 /* Random numbers */
@@ -40,8 +66,8 @@ void __fastcall__ srand (unsigned seed);
 void abort (void);
 int __fastcall__ abs (int val);
 long __fastcall__ labs (long val);
-int __fastcall__ atoi (char* s);
-long __fastcall__ atol (char* s);
+int __fastcall__ atoi (const char* s);
+long __fastcall__ atol (const char* s);
 int __fastcall__ atexit (void (*exitfunc) (void));
 void* bsearch (const void* key, const void* base, size_t n,
               size_t size, int (*cmp) (const void*, const void*));