BLOCKDATA EDI0_BLK
*+
*  Name:
*     EDI0_BLK

*  Purpose:
*     Initialise EDI common block

*  Language:
*     Starlink Fortran

*  Type of Module:
*     BLOCK DATA

*  Description:
*     Set the initialised flag to false so that EDI class definitions will
*     be loaded properly

*  Notes:
*     {routine_notes}...

*  Side Effects:
*     {routine_side_effects}...

*  Implementation Deficiencies:
*     {routine_deficiencies}...

*  References:
*     EDI Subroutine Guide : http://www.sr.bham.ac.uk/asterix-docs/Programmer/Guides/edi.html

*  Keywords:
*     package:edi, usage:private, common, initialisation

*  Copyright:
*     Copyright (C) University of Birmingham, 1995

*  Authors:
*     DJA: David J. Allan (Jet-X, University of Birmingham)
*     {enter_new_authors_here}

*  History:
*     15 Aug 1995 (DJA):
*        Original version.
*     {enter_changes_here}

*-
      
*  Type Definitions:
      IMPLICIT NONE              ! No implicit typing

*  Global Variables:
      INCLUDE 'EDI_CMN'
*       EDI_INIT = LOGICAL (returned)
*         EDI system is initialised?

*  Global Data:
      DATA EDI_INIT / .FALSE. /
*.
      
      END