98ab67d7dc
Move scripts needed by the build system and not designed to be run individually or standalone into the build subfolder. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
13 lines
237 B
Python
13 lines
237 B
Python
# Copyright (c) 2020, Friedt Professional Engineering Services, Inc
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
import struct
|
|
import sys
|
|
|
|
def main():
|
|
print(struct.calcsize("P") * 8)
|
|
sys.exit(0)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|