Module Name:    src
Committed By:   mbalmer
Date:           Sat Oct 15 10:35:06 UTC 2011

Modified Files:
        src/lib/lua/sqlite: sqlite.c

Log Message:
Remove un-needed headers.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/lua/sqlite/sqlite.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/lua/sqlite/sqlite.c
diff -u src/lib/lua/sqlite/sqlite.c:1.1 src/lib/lua/sqlite/sqlite.c:1.2
--- src/lib/lua/sqlite/sqlite.c:1.1	Sat Oct 15 10:26:30 2011
+++ src/lib/lua/sqlite/sqlite.c	Sat Oct 15 10:35:06 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: sqlite.c,v 1.1 2011/10/15 10:26:30 mbalmer Exp $ */
+/*	$NetBSD: sqlite.c,v 1.2 2011/10/15 10:35:06 mbalmer Exp $ */
 
 /*
  * Copyright (c) 2011 Marc Balmer <m...@msys.ch>
@@ -27,15 +27,11 @@
 
 /* SQLite interface for Lua */
 
-#include <errno.h>
-#include <fcntl.h>
 #include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
-#include <ctype.h>
 #include <stdlib.h>
 #include <sqlite3.h>
-#include <unistd.h>
 
 #include <lua.h>
 #include <lauxlib.h>

Reply via email to