ftp.nice.ch/Attic/openStep/implementation/gnustep/sources/gstep-base-0.2.7.tgz#/gstep-base-0.2.7/config/config.nextrt.m

This is config.nextrt.m in view mode; [Download] [Up]

/* A function for testing if the compiler is using the NeXT Objective C
   runtime or not.

   With the NeXT runtime this file compiles and links.
   With the GNU runtime, this file does not link. 
*/

#include <objc/Object.h>

int libobjects_nextrt_checker ()
{
  id o = [[Object alloc] init];

  [o self];
  objc_msgSend(o, @selector(self));

  exit(0);
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.