Deleted Added
full compact
gfb.h (165881) gfb.h (170837)
1/*-
2 * Copyright (c) 1995, 1996 Carnegie-Mellon University.
3 * All rights reserved.
4 *
5 * Author: Chris G. Demetriou
6 *
7 * Permission to use, copy, modify and distribute this software and
8 * its documentation is hereby granted, provided that both the copyright

--- 12 unchanged lines hidden (view full) ---

21 * Carnegie Mellon University
22 * Pittsburgh PA 15213-3890
23 *
24 * any improvements or extensions that they make and grant Carnegie the
25 * rights to redistribute these changes.
26 *
27 * Copyright (c) 2000 Andrew Miklic
28 *
1/*-
2 * Copyright (c) 1995, 1996 Carnegie-Mellon University.
3 * All rights reserved.
4 *
5 * Author: Chris G. Demetriou
6 *
7 * Permission to use, copy, modify and distribute this software and
8 * its documentation is hereby granted, provided that both the copyright

--- 12 unchanged lines hidden (view full) ---

21 * Carnegie Mellon University
22 * Pittsburgh PA 15213-3890
23 *
24 * any improvements or extensions that they make and grant Carnegie the
25 * rights to redistribute these changes.
26 *
27 * Copyright (c) 2000 Andrew Miklic
28 *
29 * $FreeBSD: head/sys/dev/fb/gfb.h 165881 2007-01-08 00:33:27Z marius $
29 * $FreeBSD: head/sys/dev/fb/gfb.h 170837 2007-06-16 21:31:53Z marius $
30 */
31
32#ifndef _FB_GFB_H_
33#define _FB_GFB_H_
34
35struct gfb_font {
36 int width;
37 int height;
30 */
31
32#ifndef _FB_GFB_H_
33#define _FB_GFB_H_
34
35struct gfb_font {
36 int width;
37 int height;
38 u_char data[256 * 32];
38 const u_char data[];
39};
40
41#endif /* _FB_GFB_H_ */
39};
40
41#endif /* _FB_GFB_H_ */