
#ifndef _DEV_GPIO_H
#define _DEV_GPIO_H

typedef	int
 gpio_t(void *, int);

struct	cdev *gpio_create(gpio_t *, void *, char const *, int);
void	gpio_destroy(struct cdev *);

#endif

