File: internal.h

package info (click to toggle)
shhmsg 1.3.4-1.1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 104 kB
  • ctags: 72
  • sloc: ansic: 276; makefile: 123
file content (18 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* $Id: internal.h,v 1.3 1996/11/12 08:04:33 sverrehu Exp $ */
#ifndef INTERNAL_SHHMSG_H
#define INTERNAL_SHHMSG_H

#include <stdio.h>  /* FILE */

/* streams for error messages, verbose messages, and general messages. */
#define MSG_DEFAULT_ERROR_STREAM stderr
#define MSG_DEFAULT_VERBOSE_STREAM stderr
#define MSG_DEFAULT_MESSAGE_STREAM stdout

extern FILE *_msgErrorStream;
extern FILE *_msgVerboseStream;
extern FILE *_msgMessageStream;

extern int _msgShowNameAlways;

#endif