3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 01:32:17 +00:00
z3/src/util/machine.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

30 lines
348 B
C

/*++
Copyright (c) 2006 Microsoft Corporation
Module Name:
machine.h
Abstract:
Machine/OS dependent configuration
Author:
Leonardo de Moura (leonardo) 2006-09-13.
Revision History:
--*/
#ifndef MACHINE_H_
#define MACHINE_H_
#ifdef _AMD64_
#define PTR_ALIGNMENT 3
#else
#define PTR_ALIGNMENT 2
#endif
#endif /* MACHINE_H_ */