#include "inc.h"

int* inc_1(int* arg) {

	int i;
	
	i = *arg;
	i++;

	return &i;

}
