blob: 46c8f6b7318865f8d8e9233550c267a31f881046 [file] [log] [blame]
Christopher Friedt2c0eeca2020-05-08 14:52:24 -04001# Copyright (c) 2020, Friedt Professional Engineering Services, Inc
2#
3# SPDX-License-Identifier: Apache-2.0
4import struct
5import sys
6
7def main():
8 print(struct.calcsize("P") * 8)
9 sys.exit(0)
10
11if __name__ == "__main__":
12 main()