~ubuntu-branches/debian/jessie/arcboot/jessie

« back to all changes in this revision

Viewing changes to arclib/stdlib.h

  • Committer: Bazaar Package Importer
  • Author(s): Guido Guenther
  • Date: 2004-03-02 12:01:14 UTC
  • Revision ID: james.westby@ubuntu.com-20040302120114-0pukal9hlpt3k0l7
Tags: 0.3.8.1
correct subarch detection for IP32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 1999 Silicon Graphics, Inc.
 
3
 */
 
4
#ifndef _STDLIB_H_
 
5
#define _STDLIB_H_
 
6
 
 
7
#include "stddef.h"
 
8
#include "types.h"
 
9
 
 
10
extern void *malloc(size_t size);
 
11
extern void free(void *ptr);
 
12
extern void *realloc(void *ptr, size_t size);
 
13
 
 
14
extern void arclib_malloc_add(ULONG start, ULONG size);
 
15
 
 
16
#endif                          /* _STDLIB_H_ */