DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T c

⟦c9193defe⟧ TextFile

    Length: 702 (0x2be)
    Types: TextFile
    Names: »clearfiles.c«

Derivation

└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen
    └─⟦3da311d67⟧ »./cops/1.04/cops_104.tar.Z« 
        └─⟦6a2577110⟧ 
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen
    └─⟦6a2577110⟧ »./cops/1.04/cops_104.tar« 
            └─⟦this⟧ »cops_104/src/clearfiles.c« 
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen
    └─⟦ed5edc051⟧ »./cops/1.02/cops.102.tar« 
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen
    └─⟦db60b44f1⟧ »./cops/1.02/cops.102.tar.Z« 
        └─⟦ed5edc051⟧ 
            └─⟦this⟧ »cops/src/clearfiles.c« 

TextFile

/* Copyright 1985 Robert W. Baldwin */
/* Copyright 1986 Robert W. Baldwin */
static	char	*notice85 = "Copyright 1985 Robert W. Baldwin";
static	char	*notice86 = "Copyright 1986 Robert W. Baldwin";

/*
 * Reset the info files used by Kuang.
 */


#include	<stdio.h>

char	*filelist[] = {
	"uids.k",
	"Success",
	"uids.k",
	"uids.p",
	"uids.n",
	"uids.x",
	"gids.k",
	"gids.p",
	"gids.n",
	"gids.x",
	"files.k",
	"files.p",
	"files.n",
	"files.x",
	"",
	};

main(argc, argv)
int	argc;
char	*argv[];
{
	int	i;

	for (i = 0 ; filelist[i][0] != NULL ; i++)  {
		if (freopen(filelist[i], "w", stdout) == NULL)  {
			fprintf(stderr, "%s: can't open %s.\n",
				argv[0], filelist[i]);
			exit(1);
			}
		}
}