diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-05-18 18:47:22 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-05-18 18:47:52 +0200 |
commit | 8cb1cc8dc339be9f96cd290882d775cccfc4d7e7 (patch) | |
tree | 522da6680286ce08566769749a5d0fef7ff8263f | |
parent | ee818b89f4890b3a00e93772249fce810f60811e (diff) |
CODING_STYLE: document that we should avoid kernel types like u32
-rw-r--r-- | CODING_STYLE | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CODING_STYLE b/CODING_STYLE index fab928833b..91f09e80a8 100644 --- a/CODING_STYLE +++ b/CODING_STYLE @@ -147,7 +147,9 @@ - Do not use types like "short". They *never* make sense. Use ints, longs, long longs, all in unsigned+signed fashion, and the fixed - size types uint32_t and so on, as well as size_t, but nothing else. + size types uint32_t and so on, as well as size_t, but nothing + else. Do not use kernel types like u32 and so on, leave that to the + kernel. - Public API calls (i.e. functions exported by our shared libraries) must be marked "_public_" and need to be prefixed with "sd_". No |