mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
fcf2057b38
Ensure we use generated header file for this build from -Iinclude. Reported-by: Anton Lundin <glance@ac2.se>
20 lines
387 B
C
20 lines
387 B
C
#ifndef _CMD_ENUM_H
|
|
#define _CMD_ENUM_H
|
|
|
|
/*
|
|
* include/cmds.h is generated by the Makefile. For each command definition
|
|
* in command-lines.in, cmds.h contains:
|
|
* cmd(foo_CMD, foo)
|
|
*
|
|
* This header adds each of the foo_CMD's into an enum, so there's
|
|
* a unique integer identifier for each command definition.
|
|
*/
|
|
|
|
enum {
|
|
#define cmd(a, b) a ,
|
|
#include "cmds.h"
|
|
#undef cmd
|
|
};
|
|
|
|
#endif
|