# HG changeset patch # User jwe # Date 781976422 0 # Node ID 29bc04411213b5f196af2e67ee2dd26723f3ba57 # Parent dedca41f53abc3a4f5341e68b7244e523dd29477 [project @ 1994-10-12 15:40:22 by jwe] Initial revision diff --git a/src/systime.h b/src/systime.h new file mode 100644 --- /dev/null +++ b/src/systime.h @@ -0,0 +1,45 @@ +// systime.h -*- C++ -*- +/* + +Copyright (C) 1992, 1993, 1994 John W. Eaton + +This file is part of Octave. + +Octave is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2, or (at your option) any +later version. + +Octave is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Octave; see the file COPYING. If not, write to the Free +Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#if !defined (octave_systime_h) +#define octave_systime_h 1 + +#ifdef TIME_WITH_SYS_TIME +#include +#include +#else +#ifdef HAVE_SYS_TIME_H +#include +#else +#include +#endif +#endif + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; page-delimiter: "^/\\*" *** +;;; End: *** +*/