15 lines
210 B
C
15 lines
210 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <errno.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
#include <criterion/criterion.h>
|
||
|
|
||
|
#ifdef USE_LIBNOTIFY
|
||
|
#include <libnotify/notify.h>
|
||
|
#endif
|
||
|
|
||
|
Test(misc, passing){
|
||
|
cr_assert(1);
|
||
|
}
|