예제 #1
0
/* everything for 1st time run */
void
init(void)
{
	rdata();		/* read data from orig. file */
	linkdata();
	poof();
}
예제 #2
0
파일: init.c 프로젝트: losinggeneration/kos
void
init()                                  /* everything for 1st time run  */
{
	rdata();                        /* read data from orig. file    */
	linkdata();
	poof();
}
예제 #3
0
void init(char* command)                           /* everything for 1st time run  */
                        /* command we were called with  */
{
	rdata();                        /* read data from orig. file    */
	linkdata();
	poof();
	prht();
	snd_msg="\nInitialization completed.\n";
	write(new_fd,snd_msg,strlen(snd_msg));//printf("Initialization succeeded\n");
}