X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fdaemon%2Fglobals.h;h=5a277c007c599e04b6c05d79a113fca18bdcf122;hb=c254a038fea8b4fc2deb72bbe7c886c4ee5f3f7f;hp=b91ccc82ddfd5f65d59c388d431c0ab865ff5d4c;hpb=7381780b0bec2dd004324aebcb50262f12a2b44d;p=collectd.git diff --git a/src/daemon/globals.h b/src/daemon/globals.h index b91ccc82..5a277c00 100644 --- a/src/daemon/globals.h +++ b/src/daemon/globals.h @@ -1,6 +1,6 @@ /** * collectd - src/globals.h - * Copyright (C) 2017 Florian octo Forster + * Copyright (C) 2017 Google LLC * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -30,14 +30,18 @@ #define DATA_MAX_NAME_LEN 128 #endif +#ifndef PRIsz +#define PRIsz "zu" +#endif /* PRIsz */ + /* Type for time as used by "utils_time.h" */ typedef uint64_t cdtime_t; /* hostname_set updates hostname_g */ void hostname_set(char const *hostname); -extern char *hostname_g; -extern cdtime_t interval_g; -extern int pidfile_from_cli; -extern int timeout_g; +extern char *hostname_g; +extern cdtime_t interval_g; +extern int pidfile_from_cli; +extern int timeout_g; #endif /* GLOBALS_H */