aboutsummaryrefslogtreecommitdiff
path: root/stand/libsa/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'stand/libsa/printf.c')
-rw-r--r--stand/libsa/printf.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/stand/libsa/printf.c b/stand/libsa/printf.c
index 4de547b644dd..053b54d31eff 100644
--- a/stand/libsa/printf.c
+++ b/stand/libsa/printf.c
@@ -30,30 +30,20 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
/*
* Standaloneified version of the FreeBSD kernel printf family.
*/
#include <sys/types.h>
+#include <sys/stdarg.h>
#include <sys/stddef.h>
#include <sys/stdint.h>
#include <limits.h>
#include <string.h>
#include "stand.h"
-/*
- * Note that stdarg.h and the ANSI style va_start macro is used for both
- * ANSI and traditional C compilers.
- */
-#include <machine/stdarg.h>
-
#define MAXNBUF (sizeof(intmax_t) * CHAR_BIT + 1)
typedef void (kvprintf_fn_t)(int, void *);