Skip to content

Commit

Permalink
uid_domain: use module specific include guards
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed May 4, 2020
1 parent 9691f6e commit b3c981d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/modules/uid_domain/domain.h
Expand Up @@ -19,8 +19,8 @@
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _DOMAIN_H
#define _DOMAIN_H
#ifndef _UID_DOMAIN_H_
#define _UID_DOMAIN_H_

#include <time.h>
#include <stdio.h>
Expand Down
4 changes: 2 additions & 2 deletions src/modules/uid_domain/domain_api.h
Expand Up @@ -20,8 +20,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef _DOMAIN_API_H
#define _DOMAIN_API_H
#ifndef _UID_DOMAIN_API_H_
#define _UID_DOMAIN_API_H_

#include "../../core/sr_module.h"
#include "../../core/dprint.h"
Expand Down
4 changes: 2 additions & 2 deletions src/modules/uid_domain/domain_rpc.h
Expand Up @@ -20,8 +20,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef _DOMAIN_RPC_H
#define _DOMAIN_RPC_H
#ifndef _UID_DOMAIN_RPC_H_
#define _UID_DOMAIN_RPC_H_

#include "../../core/rpc.h"

Expand Down
4 changes: 2 additions & 2 deletions src/modules/uid_domain/hash.h
Expand Up @@ -20,8 +20,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef _HASH_H
#define _HASH_H
#ifndef _UID_DOMAIN_HASH_H_
#define _UID_DOMAIN_HASH_H_

#include <stdio.h>
#include "uid_domain_mod.h"
Expand Down
4 changes: 2 additions & 2 deletions src/modules/uid_domain/uid_domain_mod.h
Expand Up @@ -20,8 +20,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef _UID_DOMAIN_MOD_H
#define _UID_DOMAIN_MOD_H
#ifndef _UID_DOMAIN_MOD_H_
#define _UID_DOMAIN_MOD_H_

#include "../../lib/srdb2/db.h"
#include "../../core/str.h"
Expand Down

0 comments on commit b3c981d

Please sign in to comment.