[EMAIL PROTECTED] wrote: > - sigemptyset(&sa.sa_mask); > - sa.sa_flags = 0; > + /* __sigemptyset(&sa.sa_mask); */ > + /* sa.sa_flags = 0; */ > sigaction(s, &sa, NULL);
Please don't do this. Over time this will litter the code with historical remnants and make it unreadable. Also, it's generally considered bad style to use C comments rather than #if 0...#endif blocks to comment out code. Bernd -- This footer brought to you by insane German lawmakers. Analog Devices GmbH Wilhelm-Wagenfeld-Str. 6 80807 Muenchen Sitz der Gesellschaft Muenchen, Registergericht Muenchen HRB 40368 Geschaeftsfuehrer Thomas Wessel, William A. Martin, Margaret Seif _______________________________________________ uClibc mailing list [email protected] http://busybox.net/cgi-bin/mailman/listinfo/uclibc
