retire _CONST, _VOLATILE, _SIZET, _ARGS, _VOID
This commit is contained in:
parent
7336a67dfe
commit
db242ed39d
27 changed files with 110 additions and 131 deletions
|
@ -86,7 +86,7 @@ char **argv;
|
||||||
}
|
}
|
||||||
|
|
||||||
int nm_sort(tmp_stbl1, tmp_stbl2)
|
int nm_sort(tmp_stbl1, tmp_stbl2)
|
||||||
_CONST void *tmp_stbl1, *tmp_stbl2;
|
const void *tmp_stbl1, *tmp_stbl2;
|
||||||
{
|
{
|
||||||
|
|
||||||
struct nlist *stbl1 = (struct nlist *)tmp_stbl1;
|
struct nlist *stbl1 = (struct nlist *)tmp_stbl1;
|
||||||
|
|
|
@ -19,8 +19,8 @@ static char sccsid[] = "@(#)in.fingerd.c 1.1 87/12/21 SMI"; /* from UCB 5.1 6/6/
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
int main _ARGS(( int argc, char *argv[] ));
|
int main( int argc, char *argv[] );
|
||||||
void fatal _ARGS(( char *prog, char *s ));
|
void fatal( char *prog, char *s );
|
||||||
|
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
char *argv[];
|
char *argv[];
|
||||||
|
|
|
@ -104,24 +104,24 @@ int server_specified = 0;
|
||||||
|
|
||||||
union querybuf;
|
union querybuf;
|
||||||
|
|
||||||
int main _ARGS(( int c, char *v[] ));
|
int main( int c, char *v[] );
|
||||||
|
|
||||||
static int parsetype _ARGS(( char *s ));
|
static int parsetype( char *s );
|
||||||
static int parseclass _ARGS(( char *s ));
|
static int parseclass( char *s );
|
||||||
static void hperror _ARGS(( int err_no ));
|
static void hperror( int err_no );
|
||||||
static void printanswer _ARGS(( struct hostent *hp ));
|
static void printanswer( struct hostent *hp );
|
||||||
static int ListHosts _ARGS(( char *namePtr, int queryType ));
|
static int ListHosts( char *namePtr, int queryType );
|
||||||
static int gethostinfo _ARGS(( char *name ));
|
static int gethostinfo( char *name );
|
||||||
static int getdomaininfo _ARGS(( char *name, char *domain ));
|
static int getdomaininfo( char *name, char *domain );
|
||||||
static int getinfo _ARGS(( char *name, char *domain, int type ));
|
static int getinfo( char *name, char *domain, int type );
|
||||||
static int printinfo _ARGS(( union querybuf *answer, u8_t *eom, int filter,
|
static int printinfo( union querybuf *answer, u8_t *eom, int filter, int
|
||||||
int isls ));
|
isls );
|
||||||
static char *DecodeError _ARGS(( int result ));
|
static char *DecodeError( int result );
|
||||||
static u8_t *pr_rr _ARGS(( u8_t *cp, u8_t *msg, FILE *file, int filter ));
|
static u8_t *pr_rr( u8_t *cp, u8_t *msg, FILE *file, int filter );
|
||||||
static u8_t * pr_cdname _ARGS(( u8_t *cp, u8_t *msg, u8_t *name, int namelen ));
|
static u8_t * pr_cdname( u8_t *cp, u8_t *msg, u8_t *name, int namelen );
|
||||||
static char *pr_class _ARGS(( int class ));
|
static char *pr_class( int class );
|
||||||
static char *pr_type _ARGS(( int type ));
|
static char *pr_type( int type );
|
||||||
static int tcpip_writeall _ARGS(( int fd, char *buf, unsigned siz ));
|
static int tcpip_writeall( int fd, char *buf, unsigned siz );
|
||||||
|
|
||||||
int
|
int
|
||||||
main(c, v)
|
main(c, v)
|
||||||
|
|
|
@ -40,8 +40,8 @@ char *prog_name;
|
||||||
|
|
||||||
char DHCPCACHE[]=_PATH_DHCPCACHE;
|
char DHCPCACHE[]=_PATH_DHCPCACHE;
|
||||||
|
|
||||||
int main _ARGS(( int argc, char *argv[] ));
|
int main( int argc, char *argv[] );
|
||||||
void usage _ARGS(( void ));
|
void usage( void );
|
||||||
|
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
|
|
|
@ -24,9 +24,9 @@
|
||||||
|
|
||||||
#include "wtmp.h"
|
#include "wtmp.h"
|
||||||
|
|
||||||
void write_log _ARGS(( char *fn ));
|
void write_log( char *fn );
|
||||||
void usage _ARGS(( void ));
|
void usage( void );
|
||||||
int main _ARGS(( int argc, char *argv[] ));
|
int main( int argc, char *argv[] );
|
||||||
|
|
||||||
char *prog;
|
char *prog;
|
||||||
char *reboot_code = "delay; boot";
|
char *reboot_code = "delay; boot";
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
|
|
||||||
static char UTMP[] = "/etc/utmp"; /* Currently logged in users. */
|
static char UTMP[] = "/etc/utmp"; /* Currently logged in users. */
|
||||||
|
|
||||||
void wall _ARGS(( char *when, char *extra ));
|
void wall( char *when, char *extra );
|
||||||
void crnlcat _ARGS(( char *message, char *more ));
|
void crnlcat( char *message, char *more );
|
||||||
|
|
||||||
void
|
void
|
||||||
wall(when, extra)
|
wall(when, extra)
|
||||||
|
|
|
@ -47,17 +47,17 @@ static char NOLOGIN[] = "/etc/nologin";
|
||||||
#define inform_user inf_user
|
#define inform_user inf_user
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void usage _ARGS(( void ));
|
void usage( void );
|
||||||
void write_pid _ARGS(( void ));
|
void write_pid( void );
|
||||||
int inform_user_time _ARGS(( void ));
|
int inform_user_time( void );
|
||||||
void inform_user _ARGS(( void ));
|
void inform_user( void );
|
||||||
void terminate _ARGS(( void ));
|
void terminate( void );
|
||||||
void wall _ARGS(( char *when, char *extra ));
|
void wall( char *when, char *extra );
|
||||||
int crash_check _ARGS(( void ));
|
int crash_check( void );
|
||||||
void parse_time _ARGS(( char *arg ));
|
void parse_time( char *arg );
|
||||||
void get_message _ARGS(( void ));
|
void get_message( void );
|
||||||
int main _ARGS(( int argc, char *argv[] ));
|
int main( int argc, char *argv[] );
|
||||||
char *itoa _ARGS(( int n ));
|
char *itoa( int n );
|
||||||
|
|
||||||
long wait_time=0L;
|
long wait_time=0L;
|
||||||
char message[1024];
|
char message[1024];
|
||||||
|
|
|
@ -142,45 +142,45 @@ struct winsize winsize;
|
||||||
|
|
||||||
#define get_window_size(fd, wp) ioctl(fd, TIOCGWINSZ, wp)
|
#define get_window_size(fd, wp) ioctl(fd, TIOCGWINSZ, wp)
|
||||||
|
|
||||||
extern int main _ARGS(( int argc, char **argv ));
|
extern int main( int argc, char **argv );
|
||||||
static void usage _ARGS(( void ));
|
static void usage( void );
|
||||||
static u_char getescape _ARGS(( char *p ));
|
static u_char getescape( char *p );
|
||||||
static char *speeds2str _ARGS(( speed_t speed ));
|
static char *speeds2str( speed_t speed );
|
||||||
static void lostpeer _ARGS(( int sig ));
|
static void lostpeer( int sig );
|
||||||
static void doit _ARGS(( void ));
|
static void doit( void );
|
||||||
static void setsignal _ARGS(( int sig, void (*act)(int sig) ));
|
static void setsignal( int sig, void (*act)(int sig) );
|
||||||
static void msg _ARGS(( char *str ));
|
static void msg( char *str );
|
||||||
static void done _ARGS(( int status ));
|
static void done( int status );
|
||||||
#if !__minix_vmd
|
#if !__minix_vmd
|
||||||
static int reader _ARGS(( void ));
|
static int reader( void );
|
||||||
#endif
|
#endif
|
||||||
static void mode _ARGS(( int f ));
|
static void mode( int f );
|
||||||
#if __minix_vmd
|
#if __minix_vmd
|
||||||
static void mark_async _ARGS(( int fd ));
|
static void mark_async( int fd );
|
||||||
static void init_0 _ARGS(( void ));
|
static void init_0( void );
|
||||||
static void init_1 _ARGS(( void ));
|
static void init_1( void );
|
||||||
static void init_rd_rem _ARGS(( void ));
|
static void init_rd_rem( void );
|
||||||
static void init_wr_rem _ARGS(( void ));
|
static void init_wr_rem( void );
|
||||||
static void restart_0 _ARGS(( void ));
|
static void restart_0( void );
|
||||||
static void restart_1 _ARGS(( void ));
|
static void restart_1( void );
|
||||||
static void restart_rd_rem _ARGS(( void ));
|
static void restart_rd_rem( void );
|
||||||
static void restart_wr_rem _ARGS(( void ));
|
static void restart_wr_rem( void );
|
||||||
static void completed_0 _ARGS(( int result, int error ));
|
static void completed_0( int result, int error );
|
||||||
static void completed_1 _ARGS(( int result, int error ));
|
static void completed_1( int result, int error );
|
||||||
static void completed_rd_rem _ARGS(( int result, int error ));
|
static void completed_rd_rem( int result, int error );
|
||||||
static void completed_wr_rem _ARGS(( int result, int error ));
|
static void completed_wr_rem( int result, int error );
|
||||||
static void do_urg _ARGS(( int urg_byte ));
|
static void do_urg( int urg_byte );
|
||||||
#endif
|
#endif
|
||||||
#if !__minix_vmd
|
#if !__minix_vmd
|
||||||
static void catch_child _ARGS(( int sig ));
|
static void catch_child( int sig );
|
||||||
static void writer _ARGS(( void ));
|
static void writer( void );
|
||||||
#endif
|
#endif
|
||||||
static void echo _ARGS(( int c ));
|
static void echo( int c );
|
||||||
#if __minix_vmd
|
#if __minix_vmd
|
||||||
static void finish _ARGS(( void ));
|
static void finish( void );
|
||||||
static void sendwindow _ARGS(( void ));
|
static void sendwindow( void );
|
||||||
static void sigwinch _ARGS(( int sig ));
|
static void sigwinch( int sig );
|
||||||
static void subshell _ARGS(( void ));
|
static void subshell( void );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
|
@ -540,7 +540,7 @@ printf("fwait: fw_fw= %d, fw_operation= %d, fw_result= %d, fw.fw_errno= %d\n",
|
||||||
static void
|
static void
|
||||||
setsignal(sig, act)
|
setsignal(sig, act)
|
||||||
int sig;
|
int sig;
|
||||||
void (*act) _ARGS(( int sig ));
|
void(*act) ( int sig );
|
||||||
{
|
{
|
||||||
if (signal(sig, act) == SIG_IGN)
|
if (signal(sig, act) == SIG_IGN)
|
||||||
(void)signal(sig, SIG_IGN);
|
(void)signal(sig, SIG_IGN);
|
||||||
|
|
|
@ -59,11 +59,11 @@ static char sccsid[] = "@(#)rsh.c 5.24 (Berkeley) 7/1/91";
|
||||||
|
|
||||||
#include <net/netlib.h>
|
#include <net/netlib.h>
|
||||||
#include <net/gen/netdb.h>
|
#include <net/gen/netdb.h>
|
||||||
int main _ARGS(( int argc, char *argv[] ));
|
int main( int argc, char *argv[] );
|
||||||
void usage _ARGS(( void ));
|
void usage( void );
|
||||||
char *copyargs _ARGS(( char **argv ));
|
char *copyargs( char **argv );
|
||||||
void sendsig _ARGS(( int signo ));
|
void sendsig( int signo );
|
||||||
void talk _ARGS(( int nflag, long omask, int pid, int rem ));
|
void talk( int nflag, long omask, int pid, int rem );
|
||||||
|
|
||||||
#define _PATH_RLOGIN1 "/bin/rlogin"
|
#define _PATH_RLOGIN1 "/bin/rlogin"
|
||||||
#define _PATH_RLOGIN2 "/usr/bin/rlogin"
|
#define _PATH_RLOGIN2 "/usr/bin/rlogin"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
PROG= tcpstat
|
PROG= tcpstat
|
||||||
CPPFLAGS+= -I${MINIXSRCDIR}/servers
|
CPPFLAGS+= -I${MINIXSRCDIR}/servers -D'ARGS(a)=a'
|
||||||
MAN=
|
MAN=
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
PROG= udpstat
|
PROG= udpstat
|
||||||
CPPFLAGS+= -I${MINIXSRCDIR}/servers
|
CPPFLAGS+= -I${MINIXSRCDIR}/servers -D'ARGS(a)=a'
|
||||||
MAN=
|
MAN=
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
|
|
@ -19,27 +19,6 @@
|
||||||
#define _ANSI 31459 /* gcc conforms enough even in non-ANSI mode */
|
#define _ANSI 31459 /* gcc conforms enough even in non-ANSI mode */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define _VOIDSTAR void *
|
|
||||||
#define _VOID void
|
|
||||||
|
|
||||||
#ifdef _ANSI
|
|
||||||
|
|
||||||
#define _ARGS(params) params
|
|
||||||
|
|
||||||
#define _CONST const
|
|
||||||
#define _VOLATILE volatile
|
|
||||||
#define _SIZET size_t
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#define _ARGS(params) ()
|
|
||||||
|
|
||||||
#define _CONST
|
|
||||||
#define _VOLATILE
|
|
||||||
#define _SIZET int
|
|
||||||
|
|
||||||
#endif /* _ANSI */
|
|
||||||
|
|
||||||
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) || __STDC_VERSION__ >= 199901
|
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) || __STDC_VERSION__ >= 199901
|
||||||
#define __LONG_LONG_SUPPORTED 1
|
#define __LONG_LONG_SUPPORTED 1
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -35,11 +35,11 @@ struct export_params {
|
||||||
sizeof(((type *)0)->field) }
|
sizeof(((type *)0)->field) }
|
||||||
#define QP_END() { 0, 0, 0 }
|
#define QP_END() { 0, 0, 0 }
|
||||||
|
|
||||||
void qp_export _ARGS((struct export_params *_ex_params));
|
void qp_export(struct export_params *_ex_params);
|
||||||
int queryparam _ARGS((int (*_qgetc) _ARGS((void)), void **_paddress,
|
int queryparam(int (*_qgetc) (void), void **_paddress, _mnx_size_t
|
||||||
_mnx_size_t *_psize));
|
*_psize);
|
||||||
_mnx_size_t paramvalue _ARGS((char **_value, void *_address,
|
_mnx_size_t paramvalue(char **_value, void *_address, _mnx_size_t
|
||||||
_mnx_size_t _size));
|
_size);
|
||||||
#endif /* _MINIX__QUERYPARAM_H */
|
#endif /* _MINIX__QUERYPARAM_H */
|
||||||
|
|
||||||
/* $PchId: queryparam.h,v 1.1 2005/06/28 14:31:26 philip Exp $ */
|
/* $PchId: queryparam.h,v 1.1 2005/06/28 14:31:26 philip Exp $ */
|
||||||
|
|
|
@ -9,10 +9,10 @@ struct ether_addr;
|
||||||
|
|
||||||
#define _PATH_ETHERS "/etc/ethers"
|
#define _PATH_ETHERS "/etc/ethers"
|
||||||
|
|
||||||
char *ether_ntoa _ARGS(( struct ether_addr *e ));
|
char *ether_ntoa( struct ether_addr *e );
|
||||||
struct ether_addr *ether_aton _ARGS(( const char *s ));
|
struct ether_addr *ether_aton( const char *s );
|
||||||
int ether_ntohost _ARGS(( char *hostname, struct ether_addr *e ));
|
int ether_ntohost( char *hostname, struct ether_addr *e );
|
||||||
int ether_hostton _ARGS(( char *hostname, struct ether_addr *e ));
|
int ether_hostton( char *hostname, struct ether_addr *e );
|
||||||
int ether_line _ARGS(( char *l, struct ether_addr *e, char *hostname ));
|
int ether_line( char *l, struct ether_addr *e, char *hostname );
|
||||||
|
|
||||||
#endif /* __SERVER__IP__GEN__IF_ETHER_H__ */
|
#endif /* __SERVER__IP__GEN__IF_ETHER_H__ */
|
||||||
|
|
|
@ -7,9 +7,9 @@ server/ip/gen/inet.h
|
||||||
|
|
||||||
#include <net/gen/in.h>
|
#include <net/gen/in.h>
|
||||||
|
|
||||||
ipaddr_t inet_addr _ARGS(( const char *addr ));
|
ipaddr_t inet_addr( const char *addr );
|
||||||
ipaddr_t inet_network _ARGS(( const char *addr ));
|
ipaddr_t inet_network( const char *addr );
|
||||||
char *inet_ntoa _ARGS(( ipaddr_t addr ));
|
char *inet_ntoa( ipaddr_t addr );
|
||||||
int inet_aton _ARGS(( const char *cp, ipaddr_t *pin ));
|
int inet_aton( const char *cp, ipaddr_t *pin );
|
||||||
|
|
||||||
#endif /* __SERVER__IP__GEN__INET_H__ */
|
#endif /* __SERVER__IP__GEN__INET_H__ */
|
||||||
|
|
|
@ -5,6 +5,6 @@ server/ip/gen/oneCsum.h
|
||||||
#ifndef __SERVER__IP__GEN__ONECSUM_H__
|
#ifndef __SERVER__IP__GEN__ONECSUM_H__
|
||||||
#define __SERVER__IP__GEN__ONECSUM_H__
|
#define __SERVER__IP__GEN__ONECSUM_H__
|
||||||
|
|
||||||
u16_t oneC_sum _ARGS(( u16_t prev, void *data, size_t data_len ));
|
u16_t oneC_sum( u16_t prev, void *data, size_t data_len );
|
||||||
|
|
||||||
#endif /* __SERVER__IP__GEN__ONECSUM_H__ */
|
#endif /* __SERVER__IP__GEN__ONECSUM_H__ */
|
||||||
|
|
|
@ -40,8 +40,8 @@ static int pids[OPEN_MAX];
|
||||||
|
|
||||||
FILE *
|
FILE *
|
||||||
popen(command, type)
|
popen(command, type)
|
||||||
_CONST char *command;
|
const char *command;
|
||||||
_CONST char *type;
|
const char *type;
|
||||||
{
|
{
|
||||||
int piped[2];
|
int piped[2];
|
||||||
int Xtype = *type == 'r' ? 0 : *type == 'w' ? 1 : 2;
|
int Xtype = *type == 'r' ? 0 : *type == 'w' ? 1 : 2;
|
||||||
|
|
|
@ -9,7 +9,7 @@ __weak_alias(access, _access)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int access(name, mode)
|
int access(name, mode)
|
||||||
_CONST char *name;
|
const char *name;
|
||||||
int mode;
|
int mode;
|
||||||
{
|
{
|
||||||
message m;
|
message m;
|
||||||
|
|
|
@ -10,7 +10,7 @@ __weak_alias(fchdir, _fchdir)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int chdir(name)
|
int chdir(name)
|
||||||
_CONST char *name;
|
const char *name;
|
||||||
{
|
{
|
||||||
message m;
|
message m;
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ __weak_alias(chroot, _chroot)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int chroot(name)
|
int chroot(name)
|
||||||
_CONST char *name;
|
const char *name;
|
||||||
{
|
{
|
||||||
message m;
|
message m;
|
||||||
|
|
||||||
|
|
|
@ -164,13 +164,13 @@ int mountflags;
|
||||||
}
|
}
|
||||||
|
|
||||||
int umount(name)
|
int umount(name)
|
||||||
_CONST char *name;
|
const char *name;
|
||||||
{
|
{
|
||||||
return umount2(name, 0);
|
return umount2(name, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int umount2(name, flags)
|
int umount2(name, flags)
|
||||||
_CONST char *name;
|
const char *name;
|
||||||
int flags;
|
int flags;
|
||||||
{
|
{
|
||||||
message m;
|
message m;
|
||||||
|
|
|
@ -13,7 +13,7 @@ __weak_alias(pathconf, _pathconf)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
long pathconf(path, name)
|
long pathconf(path, name)
|
||||||
_CONST char *path; /* name of file being interrogated */
|
const char *path; /* name of file being interrogated */
|
||||||
int name; /* property being inspected */
|
int name; /* property being inspected */
|
||||||
{
|
{
|
||||||
/* POSIX allows some of the values in <limits.h> to be increased at
|
/* POSIX allows some of the values in <limits.h> to be increased at
|
||||||
|
|
|
@ -21,6 +21,6 @@ MAN=
|
||||||
|
|
||||||
BINDIR?= /usr/sbin
|
BINDIR?= /usr/sbin
|
||||||
|
|
||||||
CPPFLAGS+= -I${.CURDIR} -D_MINIX -Wall -Werror
|
CPPFLAGS+= -I${.CURDIR} -D_MINIX -D'ARGS(a)=a' -Wall -Werror
|
||||||
|
|
||||||
.include <minix.service.mk>
|
.include <minix.service.mk>
|
||||||
|
|
|
@ -10,7 +10,7 @@ Copyright 1995 Philip Homburg
|
||||||
#define NWEO_DEFAULT (NWEO_EN_LOC | NWEO_DI_BROAD | NWEO_DI_MULTI | \
|
#define NWEO_DEFAULT (NWEO_EN_LOC | NWEO_DI_BROAD | NWEO_DI_MULTI | \
|
||||||
NWEO_DI_PROMISC | NWEO_REMANY | NWEO_RWDATALL)
|
NWEO_DI_PROMISC | NWEO_REMANY | NWEO_RWDATALL)
|
||||||
|
|
||||||
#define eth_addrcmp(a,b) (memcmp((_VOIDSTAR)&a, (_VOIDSTAR)&b, \
|
#define eth_addrcmp(a,b) (memcmp((void *)&a, (void *)&b, \
|
||||||
sizeof(a)))
|
sizeof(a)))
|
||||||
|
|
||||||
/* Forward declatations */
|
/* Forward declatations */
|
||||||
|
|
|
@ -35,11 +35,11 @@ struct export_params {
|
||||||
sizeof(((type *)0)->field) }
|
sizeof(((type *)0)->field) }
|
||||||
#define QP_END() { 0, 0, 0 }
|
#define QP_END() { 0, 0, 0 }
|
||||||
|
|
||||||
void qp_export _ARGS((struct export_params *_ex_params));
|
void qp_export(struct export_params *_ex_params);
|
||||||
int queryparam _ARGS((int (*_qgetc) _ARGS((void)), void **_paddress,
|
int queryparam(int (*_qgetc) (void), void **_paddress, _mnx_size_t
|
||||||
_mnx_size_t *_psize));
|
*_psize);
|
||||||
_mnx_size_t paramvalue _ARGS((char **_value, void *_address,
|
_mnx_size_t paramvalue(char **_value, void *_address, _mnx_size_t
|
||||||
_mnx_size_t _size));
|
_size);
|
||||||
#endif /* _MINIX__QUERYPARAM_H */
|
#endif /* _MINIX__QUERYPARAM_H */
|
||||||
|
|
||||||
/* $PchId: queryparam.h,v 1.1 2005/06/28 14:31:26 philip Exp $ */
|
/* $PchId: queryparam.h,v 1.1 2005/06/28 14:31:26 philip Exp $ */
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#define MAX_ERROR 4
|
#define MAX_ERROR 4
|
||||||
#define ITERATIONS 10
|
#define ITERATIONS 10
|
||||||
|
|
||||||
_VOLATILE int glov, gct;
|
volatile int glov, gct;
|
||||||
int errct;
|
int errct;
|
||||||
int subtest;
|
int subtest;
|
||||||
#include "common.c"
|
#include "common.c"
|
||||||
|
|
|
@ -38,7 +38,7 @@ void test5h(void);
|
||||||
void test5i(void);
|
void test5i(void);
|
||||||
void ex(void);
|
void ex(void);
|
||||||
|
|
||||||
_VOLATILE int childsigs, parsigs, alarms;
|
volatile int childsigs, parsigs, alarms;
|
||||||
|
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
|
|
Loading…
Reference in a new issue