Skip to content
Snippets Groups Projects
Commit 070d95d1 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Trivial change

parent 080a9019
No related branches found
No related tags found
No related merge requests found
......@@ -54,14 +54,14 @@
/* Quasi-standard definitions */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (a < b ? a : b)
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (a > b ? a : b)
#endif
#define HOSTFS_MAX_PATH 256
#define HOSTFS_MAX_PATH 256
/****************************************************************************
* Public Types
......@@ -96,7 +96,7 @@ struct hostfs_mountpt_s
****************************************************************************/
/****************************************************************************
* Public Function Prototypes
* Internal function prototypes
****************************************************************************/
/* Semaphore access for internal use */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment