/* revision.c (emx+gcc) -- Copyright (c) 1992-1994 by Eberhard Mattes */

#include <string.h>
#include <os2emx.h>

static char const revision[] = "25";

ULONG emx_revision (PCSZ name, LONG argc, const RXSTRING *argv,
                    PCSZ queuename, PRXSTRING retstr)
{
  if (argc != 0)
    return (1);
  strcpy (retstr->strptr, revision);
  retstr->strlength = strlen (revision);
  return (0);
}
