Name include guards consistently.

git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@606 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2012-04-20 11:06:38 +00:00
parent 6d3ad38b26
commit fe17647fb8
3 changed files with 6 additions and 6 deletions

View File

@ -30,8 +30,8 @@
* $Id$
*/
#ifndef OPENPAM_CONSTANTS_INCLUDED
#define OPENPAM_CONSTANTS_INCLUDED
#ifndef OPENPAM_CONSTANTS_H_INCLUDED
#define OPENPAM_CONSTANTS_H_INCLUDED
extern const char *pam_err_name[PAM_NUM_ERRORS];
extern const char *pam_item_name[PAM_NUM_ITEMS];

View File

@ -35,8 +35,8 @@
* $Id$
*/
#ifndef OPENPAM_DEBUG_INCLUDED
#define OPENPAM_DEBUG_INCLUDED
#ifndef OPENPAM_DEBUG_H_INCLUDED
#define OPENPAM_DEBUG_H_INCLUDED
#ifdef OPENPAM_DEBUG
#define ENTER() openpam_log(PAM_LOG_LIBDEBUG, "entering")

View File

@ -30,8 +30,8 @@
* $Id$
*/
#ifndef OPENPAM_FEATURES_INCLUDED
#define OPENPAM_FEATURES_INCLUDED
#ifndef OPENPAM_FEATURES_H_INCLUDED
#define OPENPAM_FEATURES_H_INCLUDED
struct openpam_feature {
const char *name;