summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorWill Estes <wlestes@users.sourceforge.net>2002-08-29 20:30:24 +0000
committerWill Estes <wlestes@users.sourceforge.net>2002-08-29 20:30:24 +0000
commit75e418c498ca2c604eeb784829e33a7865843d53 (patch)
tree4983b0101ff8d7f9f82b5e2e8a0a4a9c90cb1fb7 /misc.c
parent1cb69bc4c72ae209d115f7d7957cc1142c92c0dc (diff)
#include fixes; we've factored out all the system include files and put them in flexdef.h
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/misc.c b/misc.c
index 7fe6cde..05599c0 100644
--- a/misc.c
+++ b/misc.c
@@ -31,7 +31,6 @@
/* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
/* PURPOSE. */
-
#include "flexdef.h"
/* Append "#define defname value\n" to the running buffer. */
@@ -43,8 +42,8 @@ void action_define (defname, value)
char *cpy;
if ((int) strlen (defname) > MAXLINE / 2) {
- format_pinpoint_message (_
- ("name \"%s\" ridiculously long"),
+ format_pinpoint_message (
+ _("name \"%s\" ridiculously long"),
defname);
return;
}
@@ -97,8 +96,8 @@ void *allocate_array (size, element_size)
mem = flex_alloc (num_bytes);
if (!mem)
- flexfatal (_
- ("memory allocation failed in allocate_array()"));
+ flexfatal (
+ _("memory allocation failed in allocate_array()"));
return mem;
}
@@ -177,8 +176,8 @@ void check_char (c)
readable_form (c));
if (c >= csize)
- lerrsf (_
- ("scanner requires -8 flag to use the character %s"),
+ lerrsf (
+ _("scanner requires -8 flag to use the character %s"),
readable_form (c));
}