diff options
Diffstat (limited to 'gcc/ada/adaint.c')
-rw-r--r-- | gcc/ada/adaint.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ada/adaint.c b/gcc/ada/adaint.c index b7130d8fbb1..6c3f71a6dfc 100644 --- a/gcc/ada/adaint.c +++ b/gcc/ada/adaint.c @@ -6,7 +6,7 @@ * * * C Implementation File * * * - * Copyright (C) 1992-2003, Free Software Foundation, Inc. * + * Copyright (C) 1992-2004, Free Software Foundation, Inc. * * * * GNAT is free software; you can redistribute it and/or modify it under * * terms of the GNU General Public License as published by the Free Soft- * @@ -2487,3 +2487,11 @@ __gnat_lseek (int fd, long offset, int whence) { return (int) lseek (fd, offset, whence); } + +/* This function returns the version of GCC being used. Here it's GCC 3. */ +int +get_gcc_version (void) +{ + return 3; +} + |