Discussion:
mingw compilation problem-> warning: implicit declaration of function `bzero'
Rajesh Kumar Mallah
2007-01-27 18:38:28 UTC
Permalink
hi,
this is not really a postgres issue.

i am trying to compile a trigger function under MINGW32. its giving the
said warning. the call of bzero is

bzero(data, sizeof(AuditData));

$ gcc --version
gcc.exe (GCC) 3.4.2 (mingw-special)
Copyright (C) 2004 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

the code compiles fine under linux gcc (version not sure)

can anyone please suggest how to prevent this warning.

regds
mallah.

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq
Tom Lane
2007-01-27 18:56:01 UTC
Permalink
Post by Rajesh Kumar Mallah
i am trying to compile a trigger function under MINGW32. its giving the
said warning. the call of bzero is
bzero(data, sizeof(AuditData));
bzero() is long obsolete, and was never officially standard AFAIK.
Use memset() instead:

memset(data, 0, sizeof(AuditData));

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match
james fu
2007-01-29 02:00:58 UTC
Permalink
could you un-subscribe me - ***@yahoo.com?

Thank you for the help!
Post by Rajesh Kumar Mallah
i am trying to compile a trigger function under MINGW32. its giving the
said warning. the call of bzero is
bzero(data, sizeof(AuditData));
bzero() is long obsolete, and was never officially standard AFAIK.
Use memset() instead:

memset(data, 0, sizeof(AuditData));

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match



---------------------------------
Never miss an email again!
Yahoo! Toolbar alerts you the instant new Mail arrives. Check it out.
Loading...