diff options
| author | Wayne Davison <wayned@samba.org> | 2005-01-28 18:50:49 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2005-01-28 18:50:49 +0000 |
| commit | 25ff04417e4b4fa0aeb44e0b1576a01021aa1650 (patch) | |
| tree | 33747a607367dd1dd54d014d4e17a81e239de6bd /main.c | |
| parent | 63ecee4d1ae76134d3ebd6272d2157f059b2cab6 (diff) | |
| download | android_external_rsync-25ff04417e4b4fa0aeb44e0b1576a01021aa1650.tar.gz android_external_rsync-25ff04417e4b4fa0aeb44e0b1576a01021aa1650.tar.bz2 android_external_rsync-25ff04417e4b4fa0aeb44e0b1576a01021aa1650.zip | |
Use "#if" (not "#ifdef") for configure-defined macros.
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -227,7 +227,7 @@ static void report(int f) **/ static void show_malloc_stats(void) { -#ifdef HAVE_MALLINFO +#if HAVE_MALLINFO struct mallinfo mi; mi = mallinfo(); |
