Merge branch 'remove-unused-files' into 'master'

Remove two unused files

See merge request cairo/cairo!560
This commit is contained in:
Uli Schlachter 2024-05-26 19:41:16 +00:00
commit 9fcfdce216
2 changed files with 0 additions and 34 deletions

View file

@ -1,17 +0,0 @@
#include <cairo-boilerplate.h>
#include <stdio.h>
int
main (void)
{
printf ("Check linking to the just built cairo boilerplate library\n");
if (cairo_boilerplate_version () == CAIRO_VERSION) {
return 0;
} else {
fprintf (stderr,
"Error: linked to cairo boilerplate version %s instead of %s\n",
cairo_boilerplate_version_string (),
CAIRO_VERSION_STRING);
return 1;
}
}

View file

@ -1,17 +0,0 @@
#include <cairo.h>
#include <stdio.h>
int
main (void)
{
printf ("Check linking to the just built cairo library\n");
if (cairo_version () == CAIRO_VERSION) {
return 0;
} else {
fprintf (stderr,
"Error: linked to cairo version %s instead of %s\n",
cairo_version_string (),
CAIRO_VERSION_STRING);
return 1;
}
}