~ubuntu-branches/ubuntu/hardy/9base/hardy

« back to all changes in this revision

Viewing changes to lib9/malloctag.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2006-01-25 15:33:00 UTC
  • Revision ID: james.westby@ubuntu.com-20060125153300-6hh4p9wx8iqqply5
Tags: upstream-2
ImportĀ upstreamĀ versionĀ 2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <lib9.h>
 
2
 
 
3
extern  long    p9lrand(void);
 
4
#define USED(x) if(x){}else{}
 
5
#define lrand   p9lrand
 
6
 
 
7
void
 
8
setmalloctag(void *v, ulong t)
 
9
{
 
10
        USED(v);
 
11
        USED(t);
 
12
}
 
13
 
 
14
void
 
15
setrealloctag(void *v, ulong t)
 
16
{
 
17
        USED(v);
 
18
        USED(t);
 
19
}