barebox/include/complete.h
Sascha Hauer 73d57b1d35 list: remove duplicated list.h
We accidently have two list implementations in the tree:
include/list.h and include/linux/list.h. This patch moves
the latter (newer one) to include/linux/list.h.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2009-11-03 09:48:53 +01:00

11 lines
162 B
C

#ifndef __COMPLETE_
#define __COMPLETE_
#include <linux/list.h>
int complete(char *instr, char **outstr);
void complete_reset(void);
#endif /* __COMPLETE_ */