- Improved centering in DIFRAC

- Fixed a bug in UserWait
- Improved scan message in scancom
- Added zero point correction in lin2ang
- fixed an issue with uuencoded messages
This commit is contained in:
cvs
2000-04-06 12:18:53 +00:00
parent 8ba6bf7758
commit ff5e8cf0b2
35 changed files with 227 additions and 47 deletions

View File

@@ -5,11 +5,11 @@
#--------------------------------------------------------------------------
OBJ= tecs_cli.o coc_client.o coc_util.o err_handling.o \
str_util.o str_buf.o coc_server.o tecs_lsc.o tecs_serial.o \
coc_logfile.o tecs_dlog.o
coc_logfile.o tecs_dlog.o
#------------ for DigitalUnix
CC=cc
CFLAGS= -std1 -g -c -warnprotos -I. -I../hardsup
CFLAGS= -std1 -g -c -warnprotos -I../ -I. -I../hardsup
.c.o:
$(CC) $(CFLAGS) $*.c
@@ -19,7 +19,7 @@ tecs: $(OBJ)
ar cr libtecsl.a $(OBJ)
ranlib libtecsl.a
- rm TecsServer
cc -o TecsServer -g tecs.c -lm -L. -ltecsl -L../hardsup -lhlib
cc -o TecsServer -g -I../ tecs.c -lm -L. -ltecsl -L../hardsup -lhlib
clean:
rm *.o

View File

@@ -1,5 +1,6 @@
#include <stdlib.h>
#include <stdio.h>
#include <fortify.h>
#include <sys/socket.h>
#include <string.h>
#include <unistd.h>

View File

@@ -17,6 +17,7 @@
#include <string.h>
#include <stdarg.h>
#include <assert.h>
#include <fortify.h>
#include "coc_logfile.h"
#include "err_handling.h"
#include "str_util.h"

View File

@@ -19,6 +19,7 @@
#include "coc_logfile.h"
#include "coc_server.h"
#include "str_util.h"
#include <fortify.h>
static Str_Buf *buf, *bufo;

View File

@@ -7,6 +7,7 @@
#include <netdb.h>
#include <string.h>
#include <assert.h>
#include <fortify.h>
#include "err_handling.h"
#include "str_util.h"
#include "coc_util.h"

View File

@@ -2,7 +2,7 @@
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <fortify.h>
#include "err_handling.h"
#define SLEN 64

View File

@@ -4,6 +4,7 @@
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <fortify.h>
#include "err_handling.h"
#include "str_util.h"
#include "str_buf.h"

View File

@@ -7,6 +7,7 @@
#include <assert.h>
#include <string.h>
#include <ctype.h>
#include <fortify.h>
#include "err_handling.h"
#include "str_util.h"

View File

@@ -5,6 +5,7 @@
#include <sys/timeb.h>
#include <string.h>
#include <ctype.h>
#include <fortify.h>
#include "err_handling.h"
#include "coc_server.h"
#include "coc_logfile.h"

View File

@@ -1,5 +1,6 @@
#include <stdlib.h>
#include <string.h>
#include <fortify.h>
#include "err_handling.h"
#include "str_util.h"
#include "tecs_cli.h"

View File

@@ -7,6 +7,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <assert.h>
#include <fortify.h>
#include "err_handling.h"
#include "str_util.h"
#include "tecs_dlog.h"

View File

@@ -3,6 +3,7 @@
#include <stdarg.h>
#include <string.h>
#include <assert.h>
#include <fortify.h>
#include "err_handling.h"
#include "coc_logfile.h"
#include "coc_util.h"

View File

@@ -1,6 +1,7 @@
#include <stdlib.h>
#include <string.h>
#include <fortify.h>
#include "rs232c_def.h"
#include "asynsrv_def.h"
#include "sinq_prototypes.h"