diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-25 14:48:39 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-25 14:48:39 +0000 |
commit | 74e96eca1f8cebfbf15549165324846bb7c47bc5 (patch) | |
tree | 29c89eeda04b71cd028c658159c627a461d6daf2 /ftconfig.h | |
parent | 8553d089a54c76ea2d36ee64b1e54ccd5bae39a9 (diff) |
automatic import of freetypeopeneuler24.03_LTS
Diffstat (limited to 'ftconfig.h')
-rw-r--r-- | ftconfig.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ftconfig.h b/ftconfig.h new file mode 100644 index 0000000..8d4a074 --- /dev/null +++ b/ftconfig.h @@ -0,0 +1,14 @@ +#ifndef __FTCONFIG_H__MULTILIB +#define __FTCONFIG_H__MULTILIB + +#include <bits/wordsize.h> + +#if __WORDSIZE == 32 +# include "ftconfig-32.h" +#elif __WORDSIZE == 64 +# include "ftconfig-64.h" +#else +# error "unexpected value for __WORDSIZE macro" +#endif + +#endif |