commit | 2c684081c14303eb854cf04dde3367c104efed6e | [log] [tgz] |
---|---|---|
author | Patrik Stridvall <ps@leissner.se> | Sat Jul 31 17:36:48 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sat Jul 31 17:36:48 1999 +0000 |
tree | fe7a53fadb38bac10ac155a4f822a25cf94c53ea | |
parent | cf4333240c2a8076a932d30627c2550f70df32b5 [diff] [blame] |
Fixed some of the issues reported by Solaris Lint.
diff --git a/include/xmalloc.h b/include/xmalloc.h index e909cb8..0e1c565 100644 --- a/include/xmalloc.h +++ b/include/xmalloc.h
@@ -5,9 +5,9 @@ extern "C" { #endif -void *xmalloc( int size ); -void *xcalloc( int size ); -void *xrealloc( void *ptr, int size ); +void *xmalloc( size_t size ); +void *xcalloc( size_t size ); +void *xrealloc( void *ptr, size_t size ); char *xstrdup( const char *str ); #ifdef __cplusplus