#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "error.h"

extern int errno;
//only gun
//extern char * program_invocation_name;
//char *program_invocation;


int main(int argc, char **argv){
	set_invocation(argv[0]);
	setup_homedir();
/*
	void *mem_ptr;

	errno = -5;

	mem_ptr = malloc(5);
	mem_ptr = malloc(-1);

	//strcpy(program_invocation, argv[0]);
	//program_invocation = argv[0];
	
	printf("%s: malloc - %s\n", program_invocation, strerror(errno) );

	//error (EXIT_FAILURE, 0, "%u errors found", error_message_count);


	//exit (EXIT_FAILURE);
*/

	return 0;
}
