diff options
author | Roland McGrath <roland@gnu.org> | 2005-01-10 22:11:39 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-01-10 22:11:39 +0000 |
commit | 7f3fd5f7d301c403a50ab50b5cfbf6559e405859 (patch) | |
tree | 86553966c23dcf0d307557e959ac72de84f416ca /dlfcn | |
parent | 73102f5002272e82b083fa912068a3777f3e0f2e (diff) |
2005-01-10 Roland McGrath <roland@redhat.com>
* dlfcn/dlfcn.c (init): Fix typo in attribute decl.
Diffstat (limited to 'dlfcn')
-rw-r--r-- | dlfcn/dlfcn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dlfcn/dlfcn.c b/dlfcn/dlfcn.c index 2f177d3e35..9c0a84afb8 100644 --- a/dlfcn/dlfcn.c +++ b/dlfcn/dlfcn.c @@ -1,5 +1,5 @@ /* Load a shared object at run time. - Copyright (C) 1995,96,97,98,99,2000,2003,2004 Free Software Foundation, Inc. + Copyright (C) 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -25,7 +25,7 @@ char **__dlfcn_argv attribute_hidden; void -__attribute ((constuctor)) +__attribute__ ((constructor)) init (int argc, char *argv[]) { __dlfcn_argc = argc; |