Lines Matching defs:MAP
1 /* $NetBSD: map.c,v 1.13 2011/09/06 18:34:12 joerg Exp $ */
35 static char sccsid[] = "@(#)map.c 8.1 (Berkeley) 6/9/93";
37 __RCSID("$NetBSD: map.c,v 1.13 2011/09/06 18:34:12 joerg Exp $");
59 typedef struct map {
60 struct map *next; /* Linked list of maps. */
65 } MAP;
67 static MAP *cur, *maplist;
77 MAP *mapp;
81 mapp = malloc((u_int)sizeof(MAP));
185 * by the first applicable mapping in 'map'. If no mappings apply, return
191 MAP *mapp;