root/tools/build/feature/test-libzstd.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

   1 // SPDX-License-Identifier: GPL-2.0
   2 #include <zstd.h>
   3 
   4 int main(void)
   5 {
   6         ZSTD_CStream    *cstream;
   7 
   8         cstream = ZSTD_createCStream();
   9         ZSTD_freeCStream(cstream);
  10 
  11         return 0;
  12 }

/* [<][>][^][v][top][bottom][index][help] */