2015-10-05 21:58:01 +00:00
|
|
|
/*
|
2016-05-17 18:24:46 +00:00
|
|
|
* Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2015-10-05 21:58:01 +00:00
|
|
|
*
|
2016-05-17 18:24:46 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2015-10-05 21:58:01 +00:00
|
|
|
*/
|
|
|
|
|
2015-11-22 01:14:43 +00:00
|
|
|
/* This must be the first #include file */
|
2019-09-27 21:58:06 +00:00
|
|
|
#include "../async_local.h"
|
2015-10-05 21:58:01 +00:00
|
|
|
|
|
|
|
#ifdef ASYNC_NULL
|
2016-03-07 16:55:39 +00:00
|
|
|
int ASYNC_is_capable(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-19 21:44:13 +00:00
|
|
|
void async_local_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|
2015-10-05 21:58:01 +00:00
|
|
|
#endif
|
|
|
|
|