cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

test-libopencsd.c (374B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <opencsd/c_api/opencsd_c_api.h>
      3
      4/*
      5 * Check OpenCSD library version is sufficient to provide required features
      6 */
      7#define OCSD_MIN_VER ((1 << 16) | (1 << 8) | (1))
      8#if !defined(OCSD_VER_NUM) || (OCSD_VER_NUM < OCSD_MIN_VER)
      9#error "OpenCSD >= 1.1.1 is required"
     10#endif
     11
     12int main(void)
     13{
     14	(void)ocsd_get_version();
     15	return 0;
     16}