blob: 4c999daa0dcb65b53d3007c02dc39b9658d0c319 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef PERL_BEOS_BEOSISH_H
#define PERL_BEOS_BEOSISH_H
#include "unixish.h"
#undef waitpid
#define waitpid beos_waitpid
/* This seems to be protoless. */
char *gcvt(double value, int num_digits, char *buffer);
#endif
|