/usr/include/astrotcl/gen_msg.h is in skycat 3.1.2+starlink1~b-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | /*+
************************************************************************
**** C A N A D I A N A S T R O N O M Y D A T A C E N T R E *****
*
* Include File Name: gen/h/gen_msg.h
*
* Purpose:
* Defines the message structure.
*
* Date : Aug 23, 1991
*
* SCCS data : @(#)
* Module Name : gen_msg.h
* Version Number : 1.3
* Release Number : 1
* Last Updated : 8/12/92
*
* Programmer : Severin Gaudet
*
* Modification History:
*
**** C A N A D I A N A S T R O N O M Y D A T A C E N T R E *****
************************************************************************
-*/
/*
* A huge negative number is required for the MSG_ERRNO value.
*/
#define MSG_ERRNO (-9999)
/*
* Define the maximum message size.
*/
#define MSG_MAX_LEN 2048
typedef struct msg
{
int m_status;
char *m_format;
} MSG;
extern void msg_append();
extern void msg_clear();
extern void msg_format(char *buffer, char *prefix, int num_msgs, MSG *msgs, int status, ...);
|