Skip to content

Commit

Permalink
#16: avoid reserved names in include-guards
Browse files Browse the repository at this point in the history
  • Loading branch information
algrant-arm committed Dec 6, 2023
1 parent 74925eb commit 1d80b69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions devmemd/devmemd.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

#ifndef __included_devmemd_h
#define __included_devmemd_h
#ifndef _included_devmemd_h
#define _included_devmemd_h

#include <stdint.h>

Expand Down
4 changes: 2 additions & 2 deletions experimental/tns.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ nanosecond-resolution timestamps as scalars.
It allows application code to avoid dealing with 'struct timespec'.
*/

#ifndef __included_tns_h
#define __included_tns_h
#ifndef _included_tns_h
#define _included_tns_h

/*
Nanoseconds since the epoch (1 Jan 1970).
Expand Down

1 comment on commit 1d80b69

@elfring
Copy link

@elfring elfring commented on 1d80b69 Dec 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👀 Further update candidates were left over somehow.

Examples:

Please sign in to comment.