1995-02-18 02:27:10 +01:00
|
|
|
#ifndef PRIVATE_H
|
|
|
|
|
|
|
|
#define PRIVATE_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This header is for use ONLY with the time conversion code.
|
|
|
|
** There is no guarantee that it will remain unchanged,
|
|
|
|
** or that it will remain at all.
|
|
|
|
** Do NOT copy it to any system include directory.
|
|
|
|
** Thank you!
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
** ID
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
#ifndef NOID
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
static char privatehid[] = "@(#)private.h 7.33";
|
1995-02-18 02:27:10 +01:00
|
|
|
#endif /* !defined NOID */
|
|
|
|
#endif /* !defined lint */
|
|
|
|
|
|
|
|
/*
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
** Defaults for preprocessor symbols.
|
|
|
|
** You can override these in your C compiler options, e.g. `-DHAVE_ADJTIME=0'.
|
1995-02-18 02:27:10 +01:00
|
|
|
*/
|
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
#ifndef HAVE_ADJTIME
|
|
|
|
#define HAVE_ADJTIME 1
|
|
|
|
#endif /* !defined HAVE_ADJTIME */
|
|
|
|
|
|
|
|
#ifndef HAVE_SETTIMEOFDAY
|
|
|
|
#define HAVE_SETTIMEOFDAY 3
|
|
|
|
#endif /* !defined HAVE_SETTIMEOFDAY */
|
|
|
|
|
|
|
|
#ifndef HAVE_UNISTD_H
|
|
|
|
#define HAVE_UNISTD_H 1
|
|
|
|
#endif /* !defined HAVE_UNISTD_H */
|
|
|
|
|
|
|
|
#ifndef LOCALE_HOME
|
|
|
|
#define LOCALE_HOME "/usr/lib/locale"
|
|
|
|
#endif /* !defined LOCALE_HOME */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
/*
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
** Nested includes
|
1995-02-18 02:27:10 +01:00
|
|
|
*/
|
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
#include "sys/types.h" /* for time_t */
|
|
|
|
#include "stdio.h"
|
|
|
|
#include "ctype.h"
|
|
|
|
#include "errno.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "limits.h" /* for CHAR_BIT */
|
|
|
|
#include "time.h"
|
|
|
|
#include "stdlib.h"
|
|
|
|
|
|
|
|
#if HAVE_UNISTD_H - 0
|
|
|
|
#include "unistd.h" /* for F_OK and R_OK */
|
|
|
|
#endif /* HAVE_UNISTD_H - 0 */
|
|
|
|
|
|
|
|
#if !(HAVE_UNISTD_H - 0)
|
|
|
|
#ifndef F_OK
|
|
|
|
#define F_OK 0
|
|
|
|
#endif /* !defined F_OK */
|
|
|
|
#ifndef R_OK
|
|
|
|
#define R_OK 4
|
|
|
|
#endif /* !defined R_OK */
|
|
|
|
#endif /* !(HAVE_UNISTD_H - 0) */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
/*
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
** Workarounds for compilers/systems.
|
1995-02-18 02:27:10 +01:00
|
|
|
*/
|
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
/*
|
|
|
|
** SunOS 4.1.1 cc lacks const.
|
|
|
|
*/
|
1995-02-18 02:27:10 +01:00
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
#ifndef const
|
|
|
|
#ifndef __STDC__
|
|
|
|
#define const
|
|
|
|
#endif /* !defined __STDC__ */
|
|
|
|
#endif /* !defined const */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
/*
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
** SunOS 4.1.1 cc lacks prototypes.
|
1995-02-18 02:27:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef P
|
|
|
|
#ifdef __STDC__
|
|
|
|
#define P(x) x
|
|
|
|
#endif /* defined __STDC__ */
|
|
|
|
#ifndef __STDC__
|
|
|
|
#define P(x) ()
|
|
|
|
#endif /* !defined __STDC__ */
|
|
|
|
#endif /* !defined P */
|
|
|
|
|
|
|
|
/*
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
** SunOS 4.1.1 headers lack EXIT_SUCCESS.
|
1995-02-18 02:27:10 +01:00
|
|
|
*/
|
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
#ifndef EXIT_SUCCESS
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
#endif /* !defined EXIT_SUCCESS */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
/*
|
|
|
|
** SunOS 4.1.1 headers lack EXIT_FAILURE.
|
|
|
|
*/
|
1995-02-18 02:27:10 +01:00
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
#ifndef EXIT_FAILURE
|
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
#endif /* !defined EXIT_FAILURE */
|
|
|
|
|
|
|
|
/*
|
|
|
|
** SunOS 4.1.1 headers lack FILENAME_MAX.
|
|
|
|
*/
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
#ifndef FILENAME_MAX
|
|
|
|
|
|
|
|
#ifndef MAXPATHLEN
|
|
|
|
#ifdef unix
|
|
|
|
#include "sys/param.h"
|
|
|
|
#endif /* defined unix */
|
|
|
|
#endif /* !defined MAXPATHLEN */
|
|
|
|
|
|
|
|
#ifdef MAXPATHLEN
|
|
|
|
#define FILENAME_MAX MAXPATHLEN
|
|
|
|
#endif /* defined MAXPATHLEN */
|
|
|
|
#ifndef MAXPATHLEN
|
|
|
|
#define FILENAME_MAX 1024 /* Pure guesswork */
|
|
|
|
#endif /* !defined MAXPATHLEN */
|
|
|
|
|
|
|
|
#endif /* !defined FILENAME_MAX */
|
|
|
|
|
|
|
|
/*
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
** SunOS 4.1.1 libraries lack remove.
|
1995-02-18 02:27:10 +01:00
|
|
|
*/
|
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
#ifndef remove
|
|
|
|
extern int unlink P((const char * filename));
|
|
|
|
#define remove unlink
|
|
|
|
#endif /* !defined remove */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
/*
|
|
|
|
** Finally, some convenience items.
|
|
|
|
*/
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
#ifndef TRUE
|
|
|
|
#define TRUE 1
|
|
|
|
#endif /* !defined TRUE */
|
|
|
|
|
|
|
|
#ifndef FALSE
|
|
|
|
#define FALSE 0
|
|
|
|
#endif /* !defined FALSE */
|
|
|
|
|
|
|
|
#ifndef INT_STRLEN_MAXIMUM
|
|
|
|
/*
|
|
|
|
** 302 / 1000 is log10(2.0) rounded up.
|
|
|
|
** Subtract one for the sign bit;
|
|
|
|
** add one for integer division truncation;
|
|
|
|
** add one more for a minus sign.
|
|
|
|
*/
|
|
|
|
#define INT_STRLEN_MAXIMUM(type) \
|
|
|
|
((sizeof(type) * CHAR_BIT - 1) * 302 / 1000 + 2)
|
|
|
|
#endif /* !defined INT_STRLEN_MAXIMUM */
|
|
|
|
|
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
1995-03-09 11:00:12 +01:00
|
|
|
/*
|
|
|
|
** INITIALIZE(x)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GNUC_or_lint
|
|
|
|
#ifdef lint
|
|
|
|
#define GNUC_or_lint
|
|
|
|
#endif /* defined lint */
|
|
|
|
#ifndef lint
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define GNUC_or_lint
|
|
|
|
#endif /* defined __GNUC__ */
|
|
|
|
#endif /* !defined lint */
|
|
|
|
#endif /* !defined GNUC_or_lint */
|
|
|
|
|
|
|
|
#ifndef INITIALIZE
|
|
|
|
#ifdef GNUC_or_lint
|
|
|
|
#define INITIALIZE(x) ((x) = 0)
|
|
|
|
#endif /* defined GNUC_or_lint */
|
|
|
|
#ifndef GNUC_or_lint
|
|
|
|
#define INITIALIZE(x)
|
|
|
|
#endif /* !defined GNUC_or_lint */
|
|
|
|
#endif /* !defined INITIALIZE */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** UNIX was a registered trademark of UNIX System Laboratories in 1993.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endif /* !defined PRIVATE_H */
|