xref: /netbsd-src/crypto/external/bsd/openssl.old/dist/test/rsa_complex.c (revision 4724848cf0da353df257f730694b7882798e5daf)
1*4724848cSchristos /*
2*4724848cSchristos  * Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
3*4724848cSchristos  *
4*4724848cSchristos  * Licensed under the OpenSSL license (the "License").  You may not use
5*4724848cSchristos  * this file except in compliance with the License.  You can obtain a copy
6*4724848cSchristos  * in the file LICENSE in the source distribution or at
7*4724848cSchristos  * https://www.openssl.org/source/license.html
8*4724848cSchristos  */
9*4724848cSchristos 
10*4724848cSchristos /*
11*4724848cSchristos  * Check to see if there is a conflict between complex.h and openssl/rsa.h.
12*4724848cSchristos  * The former defines "I" as a macro and earlier versions of the latter use
13*4724848cSchristos  * for function arguments.
14*4724848cSchristos  */
15*4724848cSchristos #if defined(__STDC_VERSION__)
16*4724848cSchristos # if __STDC_VERSION__ >= 199901L
17*4724848cSchristos #  include <complex.h>
18*4724848cSchristos # endif
19*4724848cSchristos #endif
20*4724848cSchristos #include <openssl/rsa.h>
21*4724848cSchristos #include <stdlib.h>
22*4724848cSchristos 
main(int argc,char * argv[])23*4724848cSchristos int main(int argc, char *argv[])
24*4724848cSchristos {
25*4724848cSchristos     /* There are explicitly no run time checks for this one */
26*4724848cSchristos     return EXIT_SUCCESS;
27*4724848cSchristos }
28