// 
// Cforall Version 1.0.0 Copyright (C) 2017 University of Waterloo
// 
// The contents of this file are covered under the licence agreement in the
// file "LICENCE" distributed with Cforall.
// 
// krb5.h -- 
// 
// Author           : Peter A. Buhr
// Created On       : Tue Jul 18 07:55:44 2017
// Last Modified By : Peter A. Buhr
// Last Modified On : Fri Feb  7 19:05:35 2020
// Update Count     : 6
// 

// include file uses the CFA keyword "enable".
#if ! defined( enable )									// nesting ?
#define enable ``enable									// make keyword an identifier
#define __CFA_KRB5_H__
#endif

#include_next <krb5.h>									// has internal check for multiple expansion

#if defined( enable ) && defined( __CFA_KRB5_H__ )		// reset only if set
#undef enable
#undef __CFA_KRB5_H__
#endif

// Local Variables: //
// tab-width: 4 //
// mode: c++ //
// compile-command: "make install" //
// End: //
