Parallelize in_ifaddrhead operation
[dragonfly.git] / games / hack / def.func_tab.h
blobceb952c52e97511a4660c65517da895556eaa511
1 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2 /* def.func_tab.h - version 1.0.2 */
3 /* $DragonFly: src/games/hack/def.func_tab.h,v 1.3 2006/08/21 19:45:32 pavalos Exp $ */
5 struct func_tab {
6 char f_char;
7 int (*f_funct)(void);
8 };
10 struct ext_func_tab {
11 const char *ef_txt;
12 int (*ef_funct)(void);