1*3544Sjbeck /* 2*3544Sjbeck * Copyright (c) 2006 Sendmail, Inc. and its suppliers. 3*3544Sjbeck * All rights reserved. 4*3544Sjbeck * 5*3544Sjbeck * By using this file, you agree to the terms and conditions set 6*3544Sjbeck * forth in the LICENSE file which can be found at the top level of 7*3544Sjbeck * the sendmail distribution. 8*3544Sjbeck * 9*3544Sjbeck * $Id: misc.h,v 1.1 2006/06/28 23:57:59 ca Exp $ 10*3544Sjbeck */ 11*3544Sjbeck 12*3544Sjbeck #pragma ident "%Z%%M% %I% %E% SMI" 13*3544Sjbeck 14*3544Sjbeck #ifndef SM_MISC_H 15*3544Sjbeck # define SM_MISC_H 1 16*3544Sjbeck 17*3544Sjbeck int sm_memstat_open __P((void)); 18*3544Sjbeck int sm_memstat_close __P((void)); 19*3544Sjbeck int sm_memstat_get __P((char *, long *)); 20*3544Sjbeck 21*3544Sjbeck #endif /* ! SM_MISC_H */ 22