~ubuntu-branches/ubuntu/trusty/enigma/trusty-proposed

« back to all changes in this revision

Viewing changes to lib-src/enet/include/enet/memory.h

  • Committer: Package Import Robot
  • Author(s): Erich Schubert
  • Date: 2013-04-06 14:54:02 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130406145402-jgjrtk7hac8gtvza
Tags: 1.20-dfsg.1-1
* New upstream release (Closes: #704595)
  (Repacked: dropped zipios++ source and main menu music)
* Update watch file, sf.net again.
* Fix documentation links (Closes: #653508)
* Conflict with enigma-level-previews to encourage deinstallation
  (Pregenerated level previews were only used with version 1.01)
* Use dh7 for building instead of CDBS
* Update to policy 3.9.4.0 (no changes)
* Register documentation with doc-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/** 
2
 
 @file  memory.h
3
 
 @brief ENet memory management
4
 
*/
5
 
#ifndef __ENET_MEMORY_H__
6
 
#define __ENET_MEMORY_H__
7
 
 
8
 
#include <stdlib.h>
9
 
 
10
 
/** @defgroup memory ENet internal memory management
11
 
    @{
12
 
    @ingroup private
13
 
*/
14
 
extern void * enet_malloc (size_t);
15
 
extern void * enet_realloc (void *, size_t);
16
 
extern void * enet_calloc (size_t, size_t);
17
 
extern void   enet_free (void *);
18
 
 
19
 
/** @} */
20
 
 
21
 
#endif /* __ENET_MEMORY_H__ */
22