mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 13:20:58 +00:00
19 lines
319 B
Mathematica
19 lines
319 B
Mathematica
|
/*
|
||
|
copyright 2004 Alexander Malmberg <alexander@malmberg.org>
|
||
|
*/
|
||
|
|
||
|
#include <Foundation/NSAutoreleasePool.h>
|
||
|
#include <AppKit/NSPrintInfo.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
CREATE_AUTORELEASE_POOL(arp);
|
||
|
|
||
|
/* Should run without causing any exceptions. */
|
||
|
[NSPrintInfo sharedPrintInfo];
|
||
|
|
||
|
DESTROY(arp);
|
||
|
return 0;
|
||
|
}
|
||
|
|