source: trunk/essentials/dev-lang/perl/plan9/plan9.c@ 3310

Last change on this file since 3310 was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 3.1 KB
Line 
1#include "EXTERN.h"
2#include "perl.h"
3
4/* Functions mentioned in <sys/socket.h> but not implemented */
5
6int getsockopt(int a, int b, int c, void *d, int *e)
7{
8 croak("Function \"getsockopt\" not implemented in this version of perl.");
9 return (int)NULL;
10}
11
12int setsockopt(int a, int b, int c, void *d, int *e)
13{
14 croak("Function \"setsockopt\" not implemented in this version of perl.");
15 return (int)NULL;
16}
17
18