Deleted Added
full compact
vt_mouse_cursor.c (257969) vt_mouse_cursor.c (259016)
1/*-
2 * Copyright (c) 2013 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Aleksandr Rybalko under sponsorship from the
6 * FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2013 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Aleksandr Rybalko under sponsorship from the
6 * FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: user/ed/newcons/sys/dev/vt/font/vt_mouse_cursor.c 257969 2013-11-11 11:46:41Z ray $");
31__FBSDID("$FreeBSD: head/sys/dev/vt/font/vt_mouse_cursor.c 257969 2013-11-11 11:46:41Z ray $");
32
33#include <dev/vt/vt.h>
34
35struct mouse_cursor vt_default_mouse_pointer = {
36 .map = {
37 0x00, /* "__ " */
38 0x40, /* "_*_ " */
39 0x60, /* "_**_ " */

--- 29 unchanged lines hidden ---
32
33#include <dev/vt/vt.h>
34
35struct mouse_cursor vt_default_mouse_pointer = {
36 .map = {
37 0x00, /* "__ " */
38 0x40, /* "_*_ " */
39 0x60, /* "_**_ " */

--- 29 unchanged lines hidden ---