Mercurial > libpst
annotate src/testdebug.c @ 120:6395ced2b8b2
disable building pst2dii on cygwin
consistent ordering of our include files
all system includes protected by ifdef HAVE_ from autoconf
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sun, 01 Feb 2009 11:24:22 -0800 |
parents | 0f1492b7fe8b |
children | ab2a11e72250 |
rev | line source |
---|---|
48 | 1 #include "define.h" |
2 | |
16 | 3 #include <stdlib.h> |
4 #include <string.h> | |
5 | |
6 #define BUF_SIZE 100000 | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
48
diff
changeset
|
7 int main(int argc, const char** argv) { |
16 | 8 char *x = xmalloc(BUF_SIZE); // 10k |
9 memset(x, '.', BUF_SIZE-1); | |
10 x[BUF_SIZE-2]='P'; | |
11 x[BUF_SIZE-1]='\0'; | |
12 | |
13 DEBUG_INIT("libpst.log"); | |
14 DEBUG_REGISTER_CLOSE(); | |
15 | |
16 DEBUG_ENT("main"); | |
17 | |
18 DEBUG_FILE(("%s", x)); | |
19 DEBUG_FILE(("This is an error %d\n", 4)); | |
20 | |
21 DEBUG_RET(); | |
22 return 0; | |
23 } | |
24 |