Skip to content

Commit e514b50

Browse files
committed
fundamental: rename type.h → types-fundamental.h
"type.h" is a very generic name, but this header is very specific to making the "fundaemtnal" stuff work, it maps genric types in two distinct ways. Hence let's make clear in the header name already what this is about.
1 parent 81d9db6 commit e514b50

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

src/fundamental/bootspec-fundamental.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* SPDX-License-Identifier: LGPL-2.1-or-later */
22
#pragma once
33

4-
#include "type.h"
4+
#include "types-fundamental.h"
55

66
sd_bool bootspec_pick_name_version(
77
const sd_char *os_pretty_name,

src/fundamental/macro-fundamental.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#endif
77

88
#include <limits.h>
9-
#include "type.h"
9+
#include "types-fundamental.h"
1010

1111
#define _align_(x) __attribute__((__aligned__(x)))
1212
#define _const_ __attribute__((__const__))

src/fundamental/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fundamental_headers = files(
88
'macro-fundamental.h',
99
'sha256.h',
1010
'string-util-fundamental.h',
11-
'type.h')
11+
'types-fundamental.h')
1212

1313
sources = '''
1414
bootspec-fundamental.c

src/fundamental/sha256.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <efilib.h>
77
#endif
88

9-
#include "type.h"
9+
#include "types-fundamental.h"
1010

1111
struct sha256_ctx {
1212
uint32_t H[8];

0 commit comments

Comments
 (0)