diff options
Diffstat (limited to 'lib/libvgl')
| -rw-r--r-- | lib/libvgl/Makefile | 1 | ||||
| -rw-r--r-- | lib/libvgl/Makefile.depend | 1 | ||||
| -rw-r--r-- | lib/libvgl/bitmap.c | 3 | ||||
| -rw-r--r-- | lib/libvgl/keyboard.c | 2 | ||||
| -rw-r--r-- | lib/libvgl/main.c | 4 | ||||
| -rw-r--r-- | lib/libvgl/mouse.c | 7 | ||||
| -rw-r--r-- | lib/libvgl/simple.c | 2 | ||||
| -rw-r--r-- | lib/libvgl/text.c | 2 | ||||
| -rw-r--r-- | lib/libvgl/vgl.3 | 2 | ||||
| -rw-r--r-- | lib/libvgl/vgl.h | 2 |
10 files changed, 2 insertions, 24 deletions
diff --git a/lib/libvgl/Makefile b/lib/libvgl/Makefile index 5505d373bc12..e679b82db369 100644 --- a/lib/libvgl/Makefile +++ b/lib/libvgl/Makefile @@ -1,4 +1,3 @@ -# $FreeBSD$ PACKAGE=lib${LIB} LIB= vgl SHLIB_MAJOR= 6 diff --git a/lib/libvgl/Makefile.depend b/lib/libvgl/Makefile.depend index 8d409f5263ac..6ef78fac5cbf 100644 --- a/lib/libvgl/Makefile.depend +++ b/lib/libvgl/Makefile.depend @@ -1,4 +1,3 @@ -# $FreeBSD$ # Autogenerated - do NOT edit! DIRDEPS = \ diff --git a/lib/libvgl/bitmap.c b/lib/libvgl/bitmap.c index e37a96318e0f..2beeb8ee68c4 100644 --- a/lib/libvgl/bitmap.c +++ b/lib/libvgl/bitmap.c @@ -28,9 +28,6 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <signal.h> #include <sys/fbio.h> diff --git a/lib/libvgl/keyboard.c b/lib/libvgl/keyboard.c index dc1b25cdaeec..25399330dba5 100644 --- a/lib/libvgl/keyboard.c +++ b/lib/libvgl/keyboard.c @@ -29,8 +29,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdio.h> #include <sys/types.h> #include <sys/ioctl.h> diff --git a/lib/libvgl/main.c b/lib/libvgl/main.c index b409327b3f4c..13e376c48417 100644 --- a/lib/libvgl/main.c +++ b/lib/libvgl/main.c @@ -29,8 +29,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <signal.h> #include <stdio.h> #include <sys/types.h> @@ -93,7 +91,7 @@ struct vt_mode smode; if (VGLOldModeInfo.vi_flags & V_INFO_GRAPHICS) { size[0] = VGLOldVInfo.mv_csz; size[1] = VGLOldVInfo.mv_rsz; - size[2] = VGLOldVInfo.font_size;; + size[2] = VGLOldVInfo.font_size; ioctl(0, KDRASTER, size); } if (VGLModeInfo.vi_mem_model != V_INFO_MM_DIRECT) diff --git a/lib/libvgl/mouse.c b/lib/libvgl/mouse.c index 010a1b7b9c52..c4019fd7606f 100644 --- a/lib/libvgl/mouse.c +++ b/lib/libvgl/mouse.c @@ -29,8 +29,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdio.h> #include <sys/types.h> #include <sys/ioctl.h> @@ -284,22 +282,19 @@ VGLMouseInit(int mode) { struct mouse_info mouseinfo; VGLBitmap *ormask; - int andmask, border, error, i, interior; + int border, error, i, interior; switch (VGLModeInfo.vi_mem_model) { case V_INFO_MM_PACKED: case V_INFO_MM_PLANAR: - andmask = 0x0f; border = 0x0f; interior = 0x04; break; case V_INFO_MM_VGAX: - andmask = 0x3f; border = 0x3f; interior = 0x24; break; default: - andmask = 0xff; border = BORDER; interior = INTERIOR; break; diff --git a/lib/libvgl/simple.c b/lib/libvgl/simple.c index d4ffaed782ad..3ae07db1993b 100644 --- a/lib/libvgl/simple.c +++ b/lib/libvgl/simple.c @@ -29,8 +29,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <signal.h> #include <sys/fbio.h> #include <sys/kbio.h> diff --git a/lib/libvgl/text.c b/lib/libvgl/text.c index 18633f8d4be0..2aaa197c1a64 100644 --- a/lib/libvgl/text.c +++ b/lib/libvgl/text.c @@ -29,8 +29,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdio.h> #include <sys/fbio.h> #include "vgl.h" diff --git a/lib/libvgl/vgl.3 b/lib/libvgl/vgl.3 index effc4ffab812..b17ad315fc0c 100644 --- a/lib/libvgl/vgl.3 +++ b/lib/libvgl/vgl.3 @@ -24,8 +24,6 @@ .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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. -.\" -.\" $FreeBSD$ .Dd February 25, 2012 .Dt VGL 3 .Os diff --git a/lib/libvgl/vgl.h b/lib/libvgl/vgl.h index aa0eda9eaa28..fc4b96e68389 100644 --- a/lib/libvgl/vgl.h +++ b/lib/libvgl/vgl.h @@ -26,8 +26,6 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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. - * - * $FreeBSD$ */ #ifndef _VGL_H_ |
