2016-05-17 18:20:24 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2015-09-03 20:56:28 +00:00
|
|
|
*
|
2016-05-17 18:20:24 +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-09-03 20:56:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
char *p = NULL;
|
|
|
|
char bytes[sizeof(p)];
|
|
|
|
|
|
|
|
memset(bytes, 0, sizeof bytes);
|
|
|
|
return memcmp(&p, bytes, sizeof(bytes)) == 0 ? 0 : 1;
|
|
|
|
}
|