/* $Id$ */ /* Copyright (c) 2015 Pierre Pronchery */ /* This file is part of DeforaOS System libSystem */ /* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include "System/error.h" /* test */ static int _test(void) { int code; if((code = error_get_code()) != 0) return 1; error_set_code(255, NULL); if(error_get_code() != 255) return 2; error_print(NULL); error_print("error"); return 0; } /* main */ int main(void) { return _test(); }