home *** CD-ROM | disk | FTP | other *** search
- /* $Id: SysCallsSUN,v 1.1 90/07/04 14:34:12 grosch rel Locker: grosch $ */
-
- /* $Log: SysCallsSUN,v $
- * Revision 1.1 90/07/04 14:34:12 grosch
- * introduced conditional include
- *
- * Revision 1.0 88/10/04 11:44:53 grosch
- * Initial revision
- *
- */
-
- /* Ich, Doktor Josef Grosch, Informatiker, May 1988 */
-
- extern char * sbrk ();
-
- char * SysAlloc (ByteCount)
- long ByteCount;
-
- /* Returns a pointer to dynamically allocated */
- /* space of size 'ByteCount' bytes. */
-
- { return sbrk (ByteCount); }
-