@@ -7650,9 +7650,9 @@ static void write_protoent(void *ctx, struct __sanitizer_protoent *p) {
76507650 COMMON_INTERCEPTOR_WRITE_RANGE (ctx, p->p_aliases , pp_size * sizeof (char *));
76517651}
76527652
7653- INTERCEPTOR (struct __sanitizer_protoent *, getprotoent) {
7653+ INTERCEPTOR (struct __sanitizer_protoent *, getprotoent, ) {
76547654 void *ctx;
7655- COMMON_INTERCEPTOR_ENTER (ctx, getprotoent);
7655+ COMMON_INTERCEPTOR_ENTER (ctx, getprotoent, );
76567656 struct __sanitizer_protoent *p = REAL (getprotoent)();
76577657 if (p)
76587658 write_protoent (ctx, p);
@@ -7739,9 +7739,9 @@ INTERCEPTOR(int, getprotobynumber_r, int num,
77397739#endif
77407740
77417741#if SANITIZER_INTERCEPT_NETENT
7742- INTERCEPTOR (struct __sanitizer_netent *, getnetent) {
7742+ INTERCEPTOR (struct __sanitizer_netent *, getnetent, ) {
77437743 void *ctx;
7744- COMMON_INTERCEPTOR_ENTER (ctx, getnetent);
7744+ COMMON_INTERCEPTOR_ENTER (ctx, getnetent, );
77457745 struct __sanitizer_netent *n = REAL (getnetent)();
77467746 if (n) {
77477747 COMMON_INTERCEPTOR_WRITE_RANGE (ctx, n, sizeof (*n));
@@ -9903,9 +9903,9 @@ INTERCEPTOR(char *, fdevname_r, int fd, char *buf, SIZE_T len) {
99039903#endif
99049904
99059905#if SANITIZER_INTERCEPT_GETUSERSHELL
9906- INTERCEPTOR (char *, getusershell) {
9906+ INTERCEPTOR (char *, getusershell, ) {
99079907 void *ctx;
9908- COMMON_INTERCEPTOR_ENTER (ctx, getusershell);
9908+ COMMON_INTERCEPTOR_ENTER (ctx, getusershell, );
99099909 char *res = REAL (getusershell)();
99109910 if (res)
99119911 COMMON_INTERCEPTOR_WRITE_RANGE (ctx, res, internal_strlen (res) + 1 );
0 commit comments