This is the mail archive of the newlib@sources.redhat.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

bzero in libc/include/sys/types.h


Hi!

  libc/include/sys/types.h  contains  a  reference  to bzero, but it's
declared elsewhere. so code

#include <sys/time.h>
/*  sys/time.h  is  required  for  fdset  and FD_ZERO, but it includes
sys/types.h, where they actually defined */

int
main ()
{
  fdset fds;
  FD_ZERO ( &fds );
}

produces compiler warning.

should #include <strings.h> be added to <sys/types.h>?

Egor.            mailto:deo@logos-m.ru ICQ 5165414 FidoNet 2:5020/496.19



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]