File: test_plib.cpp

package info (click to toggle)
crrcsim 0.9.13-3.2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 22,176 kB
  • sloc: cpp: 43,186; xml: 5,022; sh: 3,832; makefile: 501; asm: 228; ansic: 150
file content (16 lines) | stat: -rw-r--r-- 263 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <plib/ul.h>
#include <plib/sg.h>
#include <plib/ssg.h>
#include <plib/ssgaSky.h>
#include <plib/pu.h>
#include <plib/puAux.h>

#define MIN_PLIB_VERSION 184

int main(void)
{
  if ( PLIB_VERSION < MIN_PLIB_VERSION ) 
    return 0;
  else
    return 42;
}