diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-08-22 12:41:16 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-08-22 12:41:16 +0000 |
commit | 57b499c7da02941c1be7875c197b7809c724da84 (patch) | |
tree | 934ddd467c54b01ad254c7f18ab8e6ee99d4e3d2 /cmdutils.h | |
parent | a282102d3fe2aea2302096e8a75320a2b8ef1cc7 (diff) | |
download | ffmpeg-57b499c7da02941c1be7875c197b7809c724da84.tar.gz |
Identifiers starting with underscores are reserved.
Originally committed as revision 10179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmdutils.h b/cmdutils.h index bbc77e2420..e44b6b5bd1 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef _CMD_UTILS_H -#define _CMD_UTILS_H +#ifndef CMD_UTILS_H +#define CMD_UTILS_H typedef struct { const char *name; @@ -70,4 +70,4 @@ void print_error(const char *filename, int err); */ void show_license(void); -#endif /* _CMD_UTILS_H */ +#endif /* CMD_UTILS_H */ |