glue.h revision 261363
18870Srgrimes/*
250476Speter * Copyright (c) 2000-2001 Proofpoint, Inc. and its suppliers.
38870Srgrimes *      All rights reserved.
42116Sjkh * Copyright (c) 1990, 1993
52116Sjkh *	The Regents of the University of California.  All rights reserved.
68870Srgrimes *
72116Sjkh * This code is derived from software contributed to Berkeley by
82116Sjkh * Chris Torek.
98870Srgrimes *
102116Sjkh * By using this file, you agree to the terms and conditions set
112116Sjkh * forth in the LICENSE file which can be found at the top level of
128870Srgrimes * the sendmail distribution.
138870Srgrimes *
142116Sjkh * $Id: glue.h,v 1.7 2013/11/22 20:51:43 ca Exp $
15141281Sdas */
16131001Smarcel
17141281Sdas/*
18141281Sdas**  The first few FILEs are statically allocated; others are dynamically
1933662Sjb**  allocated and linked in via this glue structure.
202116Sjkh*/
21141281Sdas
22130149Sdasextern struct sm_glue
2393211Sbde{
242116Sjkh	struct sm_glue	*gl_next;
252116Sjkh	int		gl_niobs;
262116Sjkh	SM_FILE_T	*gl_iobs;
272116Sjkh} smglue;
28119017Sgordon