190792Sgshapiro/*
2261363Sgshapiro * Copyright (c) 2000-2001 Proofpoint, Inc. and its suppliers.
390792Sgshapiro *      All rights reserved.
490792Sgshapiro * Copyright (c) 1990, 1993
590792Sgshapiro *	The Regents of the University of California.  All rights reserved.
690792Sgshapiro *
790792Sgshapiro * This code is derived from software contributed to Berkeley by
890792Sgshapiro * Chris Torek.
990792Sgshapiro *
1090792Sgshapiro * By using this file, you agree to the terms and conditions set
1190792Sgshapiro * forth in the LICENSE file which can be found at the top level of
1290792Sgshapiro * the sendmail distribution.
1390792Sgshapiro *
14266692Sgshapiro * $Id: glue.h,v 1.7 2013-11-22 20:51:43 ca Exp $
1590792Sgshapiro */
1690792Sgshapiro
1790792Sgshapiro/*
1890792Sgshapiro**  The first few FILEs are statically allocated; others are dynamically
1990792Sgshapiro**  allocated and linked in via this glue structure.
2090792Sgshapiro*/
2190792Sgshapiro
2290792Sgshapiroextern struct sm_glue
2390792Sgshapiro{
2490792Sgshapiro	struct sm_glue	*gl_next;
2590792Sgshapiro	int		gl_niobs;
2690792Sgshapiro	SM_FILE_T	*gl_iobs;
2790792Sgshapiro} smglue;
28