Add missing SC_ prefix to header guards

This commit is contained in:
Romain Vimont
2022-04-12 23:59:01 +02:00
parent 0c94887075
commit fa5b2a29e9
11 changed files with 22 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
// generic circular buffer (bounded queue) implementation
#ifndef CBUF_H
#define CBUF_H
#ifndef SC_CBUF_H
#define SC_CBUF_H
#include "common.h"

View File

@@ -1,5 +1,5 @@
#ifndef NET_H
#define NET_H
#ifndef SC_NET_H
#define SC_NET_H
#include "common.h"