Skip to content
Snippets Groups Projects
fib.h 157 B
Newer Older
  • Learn to ignore specific revisions
  • Jaime Arias's avatar
    Jaime Arias committed
    #ifndef FIB_H_INCLUDED
    #define FIB_H_INCLUDED
    
    #include <lace.h>
    TASK_DECL_1(int, fib, int);
    #define fib(n) CALL(fib, (n))
    
    
    
    #endif // FIB_H_INCLUDED