| 223 | */ |
| 224 | |
| 225 | int /* O - 0 on success, -1 on failure */ |
| 226 | ppdEmit(ppd_file_t *ppd, /* I - PPD file record */ |
| 227 | FILE *fp, /* I - File to write to */ |
| 228 | ppd_section_t section) /* I - Section to write */ |
| 229 | { |
| 230 | return (ppdEmitAfterOrder(ppd, fp, section, 0, 0.0)); |
| 231 | } |
| 232 | |
| 233 | |
| 234 | /* |
no test coverage detected