diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-02 01:35:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-02 01:35:57 +0000 |
commit | 8d77528da43727bb754364092a22a888d068da5c (patch) | |
tree | 11e05927e1f1fd290373031f493f1ae1b2e30a61 | |
parent | 5e555ecb75b29bfcc7d1cfc934983b0169bc0d78 (diff) | |
download | glibc-8d77528da43727bb754364092a22a888d068da5c.tar.gz glibc-8d77528da43727bb754364092a22a888d068da5c.tar.xz glibc-8d77528da43727bb754364092a22a888d068da5c.zip |
(mem_free): Add comment.
-rw-r--r-- | sunrpc/rpc/types.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sunrpc/rpc/types.h b/sunrpc/rpc/types.h index 8eff8e718e..871f3fd6b0 100644 --- a/sunrpc/rpc/types.h +++ b/sunrpc/rpc/types.h @@ -58,6 +58,10 @@ typedef unsigned long rpcport_t; #include <stdlib.h> /* For malloc decl. */ #define mem_alloc(bsize) malloc(bsize) +/* + * XXX: This must not use the second argument, or code in xdr_array.c needs + * to be modified. + */ #define mem_free(ptr, bsize) free(ptr) #ifndef makedev /* ie, we haven't already included it */ |