1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

Extern tracks list to avoid linker issues with -fno-common.

ok deraadt@
This commit is contained in:
mortimer 2021-01-18 00:44:00 +00:00
parent c9239f201a
commit c52ec6b035
2 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: cdio.c,v 1.79 2020/06/26 19:51:14 naddy Exp $ */
/* $OpenBSD: cdio.c,v 1.80 2021/01/18 00:44:00 mortimer Exp $ */
/* Copyright (c) 1995 Serge V. Vakulenko
* All rights reserved.
@ -148,6 +148,8 @@ struct cmdtab {
struct cd_toc_entry *toc_buffer;
struct track_head tracks;
char *cdname;
int fd = -1;
int writeperm = 0;

View File

@ -1,4 +1,4 @@
/* $OpenBSD: extern.h,v 1.15 2010/03/01 02:09:44 krw Exp $ */
/* $OpenBSD: extern.h,v 1.16 2021/01/18 00:44:00 mortimer Exp $ */
/*
* Copyright (c) 2002 Marc Espie.
*
@ -37,7 +37,8 @@ struct track_info {
char type;
int speed;
};
SLIST_HEAD(track_head, track_info) tracks;
SLIST_HEAD(track_head, track_info);
extern struct track_head tracks;
/* Read/Write speed */
#define DRIVE_SPEED_MAX 0xfffe