/* * prebaseconfig.c * * Copyright (C) 2000-2002 David Kimdon * 2003 Bastian Blank * * 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; either version 2 of the License, or * (at your option) any later version. * * 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 #include #include #include int di_system_prebaseconfig_append (const char *udeb, const char *format, ...) { char path[128]; FILE *fp; va_list ap; if (snprintf (path, sizeof (path), DI_SYSTEM_PREBASECONFIG_DIR "/%s", udeb) == -1) return -1; if ((fp = fopen (path, "a")) == NULL) return -1; fputs ("\n# start entry\n", fp); va_start(ap, format); vfprintf(fp, format, ap); va_end(ap); fputs ("\n# end entry\n", fp); fclose (fp); return 0; } int di_prebaseconfig_append (const char *udeb, const char *fmt, ...) __attribute__ ((alias("di_system_prebaseconfig_append"))); __asm__ (".symver di_system_prebaseconfig_append,di_system_prebaseconfig_append@LIBDI_4.0"); __asm__ (".symver di_prebaseconfig_append,di_prebaseconfig_append@LIBDI_4.0");