Skip to content

Commit

Permalink
Enforce consistent SEMU_FEATURE_ prefix (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuda-Chen authored Sep 3, 2024
1 parent 78e0011 commit ba86045
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions feature.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
/* enable/disable (compile time) features in this header */

/* virtio-blk */
#ifndef SEMU_FEATUREVIRTIOBLK
#define SEMU_FEATUREVIRTIOBLK 1
#ifndef SEMU_FEATURE_VIRTIOBLK
#define SEMU_FEATURE_VIRTIOBLK 1
#endif

/* virtio-net */
#ifndef SEMU_FEATUREVIRTIONET
#define SEMU_FEATUREVIRTIONET 1
#ifndef SEMU_FEATURE_VIRTIONET
#define SEMU_FEATURE_VIRTIONET 1
#endif

/* Feature test macro */
Expand Down

0 comments on commit ba86045

Please sign in to comment.