From: Kevin M. Rosenberg Date: Fri, 28 Apr 2000 18:00:55 +0000 (+0000) Subject: r9: remove unused files X-Git-Tag: debian-4.5.3-3~1007 X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=commitdiff_plain;h=3de76c425456c30985dd6652469092fa89c64dc1 r9: remove unused files --- diff --git a/configure.in b/configure.in index e021fb5..b70c3f9 100644 --- a/configure.in +++ b/configure.in @@ -4,7 +4,7 @@ dnl Must reset CDPATH so that bash's cd does not print to stdout dnl CDPATH= AC_INIT(src/ctrec.c) -AM_INIT_AUTOMAKE(ctsim,0.5.2) +AM_INIT_AUTOMAKE(ctsim,0.5.1) AM_CONFIG_HEADER(config.h) dnl Checks for programs. diff --git a/include/kstddef.h b/include/kstddef.h index e80e3e5..04dc900 100644 --- a/include/kstddef.h +++ b/include/kstddef.h @@ -2,8 +2,11 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: kstddef.h,v 1.3 2000/04/28 17:38:16 kevin Exp $ +** $Id: kstddef.h,v 1.4 2000/04/28 18:00:55 kevin Exp $ ** $Log: kstddef.h,v $ +** Revision 1.4 2000/04/28 18:00:55 kevin +** remove unused files +** ** Revision 1.3 2000/04/28 17:38:16 kevin ** Removed unused files ** @@ -171,18 +174,10 @@ typedef struct timedate_st TIMEDATE; #define S_IWRITE S_IWUSR #endif -/* alloc.c */ -void *alloc(unsigned int nbytes); /* allocnum.c */ float *alloc_float(int n); double *alloc_double(int n); int *alloc_int(int n); -/* cdate.c */ -char *td_str_cdate(DATE *d); -char *td_month_name(int n); -char *td_day_name(int n); -/* ctoi.c */ -char *ctoi(const char *s, int *ival); /* fexist.c */ int file_exists(const char *fname); /* fmax.c */ @@ -192,33 +187,20 @@ int get_yn(const char *prompt); /* getch.c */ int getch(void); void ungetch(int c); +/* kbasename.c */ +char *kbasename(const char *filename); /* iclip.c */ int iclip(int n, int lb, int ub); -/* irand.c */ -unsigned int irand(unsigned int n); -/* ltostr.c */ -int ltostr(long val, char *cp, int base); -/* s_clip.c */ -char *str_clip_tail(char *str, unsigned int nclip); /* s_head.c */ char *str_skip_head(const char *str, const char *charlist); /* s_lower.c */ char *str_lower(char *s); -/* s_make.c */ -char *str_make(char *str, int c, const int n); -/* s_rmhead.c */ -char *str_wrm_head(char *str); -char *str_rm_head(char *str, const char *skip_str); -/* s_rmtail.c */ -char *str_rm_tail(char *str, const char *charlist); /* s_save.c */ char *str_save(const char *s); /* s_upper.c */ char *str_upper(char *str); /* s_wtail.c */ char *str_wrm_tail(char *str); -/* strncmpc.c */ -int strncmpc(const char *s, const char *t, int n); /* sysalloc.c */ void *sys_alloc(const int nbytes, const char *name); /* syserror.c */ @@ -243,7 +225,8 @@ const char *td_str_tmdt(const TIMEDATE *td); const char *td_str_time(const TIME *t); const char *td_str_stime(const TIME *t); const char *td_str_date(const DATE *d); -/* kbasename.c */ -char *kbasename(const char *filename); +char *td_str_cdate(DATE *d); +char *td_month_name(int n); +char *td_day_name(int n); #endif