Errata
Errata
Page 1 of 2
About This Book | Download Code | Errata | P2P Forum for This Book Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below. Chapter Page Details 7 Error in Code $ cat hello.c #include <stdio.h> int main() { printf("Hello World\n"); exit(0); } $ Should be: $ cat hello.c #include <stdio.h> #include <stdlib.h> int main() { printf("Hello World\n"); exit(0); } $ 13 Error in text The .so libraries correspond to .DLL files and are required at run time, while the .sa libraries are similar to .LIB files included in the program exevutable. Should be: The .so libraries correspond to .DLL files and are required at run time, while the .a libraries are similar to .LIB files included files included in the program exevutable. 199 Error in sample program The sample program on page 199 is in error, there should be no "(int *)" on the affected line. The line: tputs(clear, 1, (int *) char_to_terminal); should read: tputs(clear, 1, char_to_terminal); 12/1/04 7/19/05 Date 10/11/05 Print Run
Page 2 of 2
Copyright 2000-2006 by John Wiley & Sons, Inc. or related companies. All rights reserved. Please read our Privacy Policy.