File: zmalloc.h

package info (click to toggle)
acorn-fdisk 3.0.6-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,068 kB
  • sloc: ansic: 5,422; makefile: 99
file content (16 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * lib/zmalloc.h
 *
 * Copyright (C) 1997,1998 Russell King
 */
#ifndef LIB_MALLOC_H
#define LIB_MALLOC_H

/* Function: void *zmalloc (size_t size)
 * Purpose : malloc some memory (and clear it)
 * Params  : size - number of bytes to malloc
 * Returns : pointer to allocated memory
 */
extern void *zmalloc (size_t size);

#endif