diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-02 10:18:25 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-02 10:18:25 +0000 |
commit | 68055a63a7ac3564e60c4fffbeddf657236fb1d9 (patch) | |
tree | 4b6395db1f9eaaa1fa7e71da5225420ab37e3847 /gcc/java/jvspec.c | |
parent | 221c40367d7a8b45fe6529ea188cebcf4a050649 (diff) | |
download | gcc-68055a63a7ac3564e60c4fffbeddf657236fb1d9.tar.gz |
Fix typo in comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24966 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/jvspec.c')
-rw-r--r-- | gcc/java/jvspec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/java/jvspec.c b/gcc/java/jvspec.c index 9aed654a31c..389cdf514f1 100644 --- a/gcc/java/jvspec.c +++ b/gcc/java/jvspec.c @@ -61,6 +61,7 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #define MATH_LIBRARY "-lm" #endif +extern char *xmalloc PROTO((size_t)); extern int do_spec PROTO((char *)); extern char *input_filename; extern size_t input_filename_length; @@ -160,7 +161,7 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries) int saw_C = 0; int saw_o = 0; - /* Saw soem -O* or -g* option, respectively. */ + /* Saw some -O* or -g* option, respectively. */ int saw_O = 0; int saw_g = 0; |