| 6057 | } |
| 6058 | |
| 6059 | int PSL_defcolor (struct PSL_CTRL *PSL, const char *param, double rgb[]) { |
| 6060 | PSL_command (PSL, "/%s {%s} def\n", param, psl_putcolor (PSL, rgb, 0)); |
| 6061 | return (PSL_NO_ERROR); |
| 6062 | } |
| 6063 | |
| 6064 | /* Helpers to make sure fp is closed and tmp_file is removed on return. */ |
| 6065 | #define Return1(x) {code = x; fclose (fp); return (code);} |
no test coverage detected