1N/A/*
1N/A * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
1N/A * All rights reserved.
1N/A * Copyright (c) 1990, 1993
1N/A * The Regents of the University of California. All rights reserved.
1N/A *
1N/A * This code is derived from software contributed to Berkeley by
1N/A * Chris Torek.
1N/A *
1N/A * By using this file, you agree to the terms and conditions set
1N/A * forth in the LICENSE file which can be found at the top level of
1N/A * the sendmail distribution.
1N/A *
1N/A * $Id: glue.h,v 1.6 2001/01/22 23:09:49 ca Exp $
1N/A */
1N/A
1N/A#pragma ident "%Z%%M% %I% %E% SMI"
1N/A
1N/A/*
1N/A** The first few FILEs are statically allocated; others are dynamically
1N/A** allocated and linked in via this glue structure.
1N/A*/
1N/A
1N/Aextern struct sm_glue
1N/A{
1N/A struct sm_glue *gl_next;
1N/A int gl_niobs;
1N/A SM_FILE_T *gl_iobs;
1N/A} smglue;