aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.d/pci_old_get_dev_test.c
blob: 3223651597359ffd8933d7022669f9309cd76f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Avoid a failing test due to libpci header symbol shadowing breakage */
#define index shadow_workaround_index
#if !defined __NetBSD__
#include <pci/pci.h>
#else
#include <pciutils/pci.h>
#endif
struct pci_access *pacc;
struct pci_dev *dev = {0};
int main(int argc, char **argv)
{
	(void) argc;
	(void) argv;
	pacc = pci_alloc();
	dev = pci_get_dev(pacc, dev->bus, dev->dev, 1);
	return 0;
}