8ed56d71c4d5ede7698bd6dcbe521608bde8909d
[openafs.git] / src / package / misc.c
1
2 #include <afs/param.h>
3 #include <stdio.h>
4 #include <sys/types.h>
5 #include <sys/stat.h>
6
7 #include "globals.h"
8 #include "package.h"
9
10 char *emalloc();
11
12
13 yyerror()
14 {
15 }
16
17 yywrap()
18 {
19     return 1;
20 }
21
22 void 
23 sprint(char *s)
24 {
25     printf("sprint - %s", s);
26 }
27
28 void 
29 allprint(int i)
30 {
31     printf("allprint - %d\n", i);
32 }