mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
8099050c71
This is the result of running $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h in the compat directory
19 lines
337 B
C
19 lines
337 B
C
#include <stdio.h>
|
|
#include <zlib.h>
|
|
|
|
static const char *template =
|
|
"prefix=/usr\n"
|
|
"exec_prefix=${prefix}\n"
|
|
"libdir=${exec_prefix}/lib\n"
|
|
"\n"
|
|
"Name: zlib\n"
|
|
"Description: zlib compression library\n"
|
|
"Version: %s\n"
|
|
"Libs: -lz\n";
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
printf (template, ZLIB_VERSION);
|
|
return 0;
|
|
}
|