=================================================================== RCS file: /cvs/prex-old/usr/bin/free/free.c,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -u -r1.1.1.1 -r1.1.1.1.2.1 --- prex-old/usr/bin/free/free.c 2008/06/03 10:38:47 1.1.1.1 +++ prex-old/usr/bin/free/free.c 2008/08/13 17:12:34 1.1.1.1.2.1 @@ -46,10 +46,9 @@ sys_info(INFO_MEMORY, &info); - printf(" total used free kernel\n"); - printf(" %8d %8d %8d %8d\n", (u_int)info.total, - (u_int)(info.total - info.free), (u_int)info.free, - (u_int)info.kernel); + printf(" total used free\n"); + printf("Mem: %8d %8d %8d\n", (u_int)info.total, + (u_int)(info.total - info.free), (u_int)info.free); exit(0); /* NOTREACHED */ }