Systemd/src/test/test-sizeof.c
Zbigniew Jędrzejewski-Szmek 11a1589223 tree-wide: drop license boilerplate
Files which are installed as-is (any .service and other unit files, .conf
files, .policy files, etc), are left as is. My assumption is that SPDX
identifiers are not yet that well known, so it's better to retain the
extended header to avoid any doubt.

I also kept any copyright lines. We can probably remove them, but it'd nice to
obtain explicit acks from all involved authors before doing that.
2018-04-06 18:58:55 +02:00

61 lines
1.3 KiB
C

/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
Copyright 2016 Zbigniew Jędrzejewski-Szmek
***/
#include <stdio.h>
#include <string.h>
#include "time-util.h"
/* Print information about various types. Useful when diagnosing
* gcc diagnostics on an unfamiliar architecture. */
#pragma GCC diagnostic ignored "-Wtype-limits"
#define info(t) \
printf("%s → %zu bits%s\n", STRINGIFY(t), \
sizeof(t)*CHAR_BIT, \
strstr(STRINGIFY(t), "signed") ? "" : \
((t)-1 < (t)0 ? ", signed" : ", unsigned"));
enum Enum {
enum_value,
};
enum BigEnum {
big_enum_value = UINT64_C(-1),
};
int main(void) {
info(char);
info(signed char);
info(unsigned char);
info(short unsigned);
info(unsigned);
info(long unsigned);
info(long long unsigned);
info(__syscall_ulong_t);
info(__syscall_slong_t);
info(float);
info(double);
info(long double);
info(size_t);
info(ssize_t);
info(time_t);
info(usec_t);
info(__time_t);
info(pid_t);
info(uid_t);
info(gid_t);
info(enum Enum);
info(enum BigEnum);
return 0;
}