~ubuntu-branches/debian/squeeze/putty/squeeze

« back to all changes in this revision

Viewing changes to puttymem.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-05-28 09:28:32 UTC
  • mfrom: (4.1.4 hardy)
  • Revision ID: james.westby@ubuntu.com-20080528092832-88epkb3d4s1zsw61
Tags: 0.60-3
* Move putty to Applications/Network/Communication menu sub-section.
* Use dh_desktop.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#define smalloc(z) (mlog(__FILE__,__LINE__), safemalloc(z,1))
15
15
#define snmalloc(z,s) (mlog(__FILE__,__LINE__), safemalloc(z,s))
16
16
#define srealloc(y,z) (mlog(__FILE__,__LINE__), saferealloc(y,z,1))
17
 
#define snrealloc(y,z) (mlog(__FILE__,__LINE__), saferealloc(y,z,s))
 
17
#define snrealloc(y,z,s) (mlog(__FILE__,__LINE__), saferealloc(y,z,s))
18
18
#define sfree(z) (mlog(__FILE__,__LINE__), safefree(z))
19
19
void mlog(char *, int);
20
20
#else