1*e71b7053SJung-uk Kim /* 2*e71b7053SJung-uk Kim * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved. 3*e71b7053SJung-uk Kim * 4*e71b7053SJung-uk Kim * Licensed under the OpenSSL license (the "License"). You may not use 5*e71b7053SJung-uk Kim * this file except in compliance with the License. You can obtain a copy 6*e71b7053SJung-uk Kim * in the file LICENSE in the source distribution or at 7*e71b7053SJung-uk Kim * https://www.openssl.org/source/license.html 8*e71b7053SJung-uk Kim */ 9*e71b7053SJung-uk Kim 10*e71b7053SJung-uk Kim #ifndef HEADER_NELEM_H 11*e71b7053SJung-uk Kim # define HEADER_NELEM_H 12*e71b7053SJung-uk Kim 13*e71b7053SJung-uk Kim # define OSSL_NELEM(x) (sizeof(x)/sizeof((x)[0])) 14*e71b7053SJung-uk Kim #endif 15