/* $Id$ * * Convert from GDSS error codes to com_err error codes * * Copyright (C) 1987-1998 by the Massachusetts Institute of Technology * For copying and distribution information, please see the file * . */ #include #include #include RCSID("$Header$"); int gdss2et(int code) { if (code == 0) return code; return ERROR_TABLE_BASE_gdss - code - 1; }