Mercurial > libpst
view src/testdebug.c @ 160:252ad66d3d6e stable-0-6-32
fix ppc64 compile error
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sat, 14 Mar 2009 17:45:48 -0700 |
parents | fc11b1d1ad34 |
children | 6954d315aaa8 |
line wrap: on
line source
#include "define.h" #define BUF_SIZE 100000 int main(int argc, const char** argv) { char *x = xmalloc(BUF_SIZE); // 10k memset(x, '.', BUF_SIZE-1); x[BUF_SIZE-2]='P'; x[BUF_SIZE-1]='\0'; DEBUG_INIT("libpst.log"); DEBUG_REGISTER_CLOSE(); DEBUG_ENT("main"); DEBUG_FILE(("%s", x)); DEBUG_FILE(("This is an error %d\n", 4)); DEBUG_RET(); return 0; }