head	1.2;
access;
symbols;
locks; strict;
comment	@ * @;


1.2
date	2019.08.01.22.04.33;	author wkt;	state Exp;
branches;
next	1.1;

1.1
date	2019.08.01.21.50.54;	author wkt;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Fix up the exit(0) indenting.
@
text
@/* Include files for the various programs
 * Author: Warren Toomey wkt@@cs.adfa.edu.au
 * $Revision: 1.1 $
 */

#include <sys/types.h>
#include <utime.h>
#include <stdio.h>
#include <string.h>

#include <stdlib.h>                             /* malloc's definition */
#include <time.h>                               /* ctime's definition */
#include <unistd.h>                             /* chown's definition */
#include <sys/stat.h>                           /* chmod's definition */

/* Typedefs */
#ifdef NEEDITYPES
typedef char int8_t;                            /* These may need redefining */
typedef short int16_t;
typedef int int32_t;
#endif

#ifdef NEEDUTYPES
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
#endif
@


1.1
log
@Initial revision
@
text
@d17 1
a17 1
#ifdef NEEDTYPES
@
