Upload_transparent

The Linux Programmer's Guide

 
 
 
 
 
Download PDF FREE
jaymody

by jaymody

Value This
Doc
Scribd
Average
     
Pages: 131 43
Words: 40749 13640
Characters: 235416 81678
Lines: 1623 623
     
     
Letters per word: 5.78 5.99
Words per line: 25.11 21.89
Words per page: 311.06 317.21

Add to your reading list

Flag_red Flag this document

Document Information

6,878 Reads | 2 Comments

Description

The Linux Programmer’s Guide is meant to do what the name implies—It is to help Linux programmers understand the peculiarities of Linux. By its nature, this also means that it should be useful when porting programs from other operating systems to Linux. Therefore, this guide must describe the system calls and the major kernel changes which have effects on older programs like serial I/O and networking.

Pdf_16x16 131 Pages


Date Added

10/24/2008

Category

Uncategorized.

Tags
Groups
Awards

Flame Rising

Copyright

Attribution Non-commercial

More info »

 

mmutale

mmutale

Hello I need help. We have Linux Red Hat 4 and I am trying to compile the following 'C' Program. #define CUR_PD 338 #include<stdio.h> #include<stdlib.h> #include<curses.h> struct s_menus{ int ops; int y,x,w,o; int ptr; char title[20]; char options[10][40]; char commands[10][40]; }; typedef struct s_menus MENU; int opt; MENU m; main() { char a[20]; int i,y,x,o,w; opt=0; InitialiseAll(); menus_ini(&m); InitialiseFile(&w); x=(80-w)/2; y=5; o=opt+2; menus_title(&m,"UNZA"); i=menus(&m,y,x,o,w); clear(); refresh(); endwin(); } When I use the following: cc unzamenu2.c -lcurses -o unzamenu or gcc unzamenu2.c -o unzamenu it is coming up with: 'undefined reference to 'stdscr' Which I feel should be in the include libraries. Can you please help ? Thanking you in advance. Felix Mwango Mutale

03/31/2009