mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
2c36b84bb5
Note that Makefile should go since it should be rebuilt from Makefile.in by configure. - start_threads now has HAVE_ALSA_ALSASOUND_H - ptt_unix now uses configure HAVE_SYS_PARAM_H Initial *non production* commit I am a little rusty with it, sorry. --db git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@58 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
87 lines
1.3 KiB
C
87 lines
1.3 KiB
C
/* FORTRAN: fd = close(filedes) */
|
|
close_(filedes)
|
|
int *filedes;
|
|
{
|
|
return(close(*filedes));
|
|
}
|
|
/* FORTRAN: fd = open(filnam,mode) */
|
|
open_(filnam,mode)
|
|
char filnam[];
|
|
int *mode;
|
|
{
|
|
return(open(filnam,*mode));
|
|
}
|
|
/* FORTRAN: fd = creat(filnam,mode) */
|
|
creat_(filnam,mode)
|
|
char filnam[];
|
|
int *mode;
|
|
{
|
|
return(creat(filnam,*mode));
|
|
}
|
|
/* FORTRAN: nread = read(fd,buf,n) */
|
|
read_(fd,buf,n)
|
|
int *fd,*n;
|
|
char buf[];
|
|
{
|
|
return(read(*fd,buf,*n));
|
|
}
|
|
/* FORTRAN: nwrt = write(fd,buf,n) */
|
|
write_(fd,buf,n)
|
|
int *fd,*n;
|
|
char buf[];
|
|
{
|
|
return(write(*fd,buf,*n));
|
|
}
|
|
/* FORTRAN: ns = lseek(fd,offset,origin) */
|
|
lseek_(fd,offset,origin)
|
|
int *fd,*offset,*origin;
|
|
{
|
|
return(lseek(*fd,*offset,*origin));
|
|
}
|
|
/* times(2) */
|
|
times_(buf)
|
|
int buf[];
|
|
{
|
|
return (times(buf));
|
|
}
|
|
/* ioperm(2) */
|
|
//ioperm_(from,num,turn_on)
|
|
//unsigned long *from,*num,*turn_on;
|
|
//{
|
|
// return (ioperm(*from,*num,*turn_on));
|
|
// return (i386_get_ioperm(*from,*num,*turn_on));
|
|
//}
|
|
|
|
/* usleep(3) */
|
|
usleep_(microsec)
|
|
unsigned long *microsec;
|
|
{
|
|
return (usleep(*microsec));
|
|
}
|
|
|
|
/* returns random numbers between 0 and 32767 to FORTRAN program */
|
|
iran_(arg)
|
|
int *arg;
|
|
{
|
|
return (rand());
|
|
}
|
|
exit_(n)
|
|
int *n;
|
|
{
|
|
printf("\n\n");
|
|
exit(*n);
|
|
}
|
|
#include <time.h>
|
|
time_t time_()
|
|
{
|
|
return time(0);
|
|
}
|
|
|
|
/* hrtime() */
|
|
double hrtime_()
|
|
{
|
|
int tv[2],tz[2];
|
|
gettimeofday(tv,tz);
|
|
return(tv[0]+1.e-6*tv[1]);
|
|
}
|