diff options
author | Christopher Faylor <me@cgf.cx> | 2002-09-23 00:31:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-09-23 00:31:31 +0000 |
commit | f0227ea3c78d8d23dc35f0939219649447eecfae (patch) | |
tree | 0a116e294fa35db8a66901f6ef85b41720913c2f /winsup/cygwin/cygheap.cc | |
parent | c87c8a533f9e917878d433956420953598ab6cd6 (diff) | |
download | cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.gz cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.bz2 cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.zip |
More GNUify non-GNU formatted functions calls throughout.
Diffstat (limited to 'winsup/cygwin/cygheap.cc')
-rw-r--r-- | winsup/cygwin/cygheap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc index 937c3392c..60eafcd44 100644 --- a/winsup/cygwin/cygheap.cc +++ b/winsup/cygwin/cygheap.cc @@ -263,7 +263,7 @@ _crealloc (void *ptr, int size) /* End Copyright (C) 1997 DJ Delorie */ -#define sizeof_cygheap(n) ((n) + sizeof(cygheap_entry)) +#define sizeof_cygheap(n) ((n) + sizeof (cygheap_entry)) #define N ((cygheap_entry *) NULL) #define tocygheap(s) ((cygheap_entry *) (((char *) (s)) - (int) (N->data))) |