1: /* LINTLIBRARY */ 2: 3: Ignore(a) 4: int a; 5: { 6: a=a; 7: } 8: 9: Ignors(s) 10: char *s; 11: { 12: s=s; 13: } 14: 15: Forget(s) 16: char *s; 17: { 18: Ignors(s); 19: } 20: #include <stdio.h> 21: 22: /* VARARGS */ 23: FILE *popenp(a,b,c) 24: char *a, *b, *c; 25: { 26: a=a;b=b;if (c==NULL) printf("have a nice day!\n"); 27: return(stdin); 28: }