diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1996-08-28 01:59:28 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-28 01:59:28 +0000 |
| commit | 105409746499657acdffc109db9d343b464bda1f (patch) | |
| tree | ad73a9b45b4500ddedb5b7d18edcf90ec7cb35c5 /src/include/utils/module.h | |
| parent | ca405ae4bf50a0074cf6e7ffb4873d5c9a861403 (diff) | |
| download | postgresql-105409746499657acdffc109db9d343b464bda1f.tar.gz | |
More cleanups of the include files
- centralizing to simplify the -I's required to compile
Diffstat (limited to 'src/include/utils/module.h')
| -rw-r--r-- | src/include/utils/module.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/include/utils/module.h b/src/include/utils/module.h new file mode 100644 index 0000000000..6c5d77d6ad --- /dev/null +++ b/src/include/utils/module.h @@ -0,0 +1,25 @@ +/*------------------------------------------------------------------------- + * + * module.h-- + * this file contains general "module" stuff that used to be + * spread out between the following files: + * + * enbl.h module enable stuff + * trace.h module trace stuff (now gone) + * + * + * Copyright (c) 1994, Regents of the University of California + * + * $Id: module.h,v 1.1 1996/08/28 01:59:12 scrappy Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef MODULE_H +#define MODULE_H + +/* + * prototypes for functions in init/enbl.c + */ +extern bool BypassEnable(int *enableCountInOutP, bool on); + +#endif /* MODULE_H */ |
