0% found this document useful (0 votes)
107 views2 pages

Errata

Linux Prog

Uploaded by

raman86_net
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
107 views2 pages

Errata

Linux Prog

Uploaded by

raman86_net
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Wrox::Beginning Linux Programming, 3rd Edition:Book Information and Code Download

Page 1 of 2

Topic: Open Source


Beginning Linux Programming, 3rd Edition by Neil Matthew, Richard Stones, Alan Cox
ISBN: 0-7645-4497-7 January 2004 888 pages If you are an instructor, request an evaluation copy of this title.

Print Version: US $39.99 Add to Cart

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

http://www.wrox.com/WileyCDA/WroxTitle/productCd -0764544977,descCd-view_errat... 10/07/2006

Wrox::Beginning Linux Programming, 3rd Edition:Book Information and Code Download

Page 2 of 2

Copyright 2000-2006 by John Wiley & Sons, Inc. or related companies. All rights reserved. Please read our Privacy Policy.

http://www.wrox.com/WileyCDA/WroxTitle/productCd -0764544977,descCd-view_errat... 10/07/2006

You might also like