File: shmalloc.h

package info (click to toggle)
brutefir 1.0o-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,160 kB
  • sloc: ansic: 15,858; makefile: 337; sh: 6
file content (17 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * (c) Copyright 2001, 2003 -- Anders Torger
 *
 * This program is open source. For license terms, see the LICENSE file.
 *
 */
#ifndef _SHMALLOC_H_
#define _SHMALLOC_H_

void *
shmalloc(size_t size);

void *
shmalloc_id(int *shmid,
            size_t size);

#endif