The filenames of the Fortran include files are in lower case but they should be specified in the program in the standard Starlink way. That is, for example:
Links are then set up to the public include files in /star/include using the appropriate pkg_dev script. For example:INCLUDE 'SAE_PAR' INCLUDE 'PAR_ERR'
creates links PAR_PAR and PAR_ERR to /star/include/par_par and /star/include/par_err respectively. (SAE_PAR is defined by star_dev.)% par_dev
For C programs, includes take the normal form:
(-I/star/include is included in the link scripts).#include "par_err.h"
ADAM