diff options
author | Paul Querna <pquerna@apache.org> | 2008-12-21 22:32:04 +0100 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2008-12-21 22:32:04 +0100 |
commit | 41fa7d796a2fd66d8edfc888ef796c13761a45a5 (patch) | |
tree | bff2955a95645b349ead39ecd823ad1e5943f8b4 | |
parent | Make all of the hook callbacks static functions. (diff) | |
download | apache2-41fa7d796a2fd66d8edfc888ef796c13761a45a5.tar.xz apache2-41fa7d796a2fd66d8edfc888ef796c13761a45a5.zip |
Include standard ASF license block.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@728512 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/lua/lua_apr.c | 16 | ||||
-rw-r--r-- | modules/lua/lua_apr.h | 17 |
2 files changed, 33 insertions, 0 deletions
diff --git a/modules/lua/lua_apr.c b/modules/lua/lua_apr.c index 655156ed1e..b744ea0900 100644 --- a/modules/lua/lua_apr.c +++ b/modules/lua/lua_apr.c @@ -1,3 +1,19 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "apr.h" #include "apr_tables.h" diff --git a/modules/lua/lua_apr.h b/modules/lua/lua_apr.h index b7bdf53425..c492ee8716 100644 --- a/modules/lua/lua_apr.h +++ b/modules/lua/lua_apr.h @@ -1,3 +1,20 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #ifndef _LUA_APR_H_ #define _LUA_APR_H_ |