Files
kea/compiler-checks/have-sa-len.cc
Andrei Pavel 9d66d0d6cc
Some checks are pending
CodeQL / Analyze (cpp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
[#3443] Extra additions to the additions to the Meson Proof of Concept
2025-02-04 16:29:49 +02:00

9 lines
120 B
C++

#include <sys/types.h>
#include <sys/socket.h>
int main() {
struct sockaddr sa;
sa.sa_len = 0;
return 0;
}