1251876Speter/* Licensed to the Apache Software Foundation (ASF) under one or more
2251876Speter * contributor license agreements.  See the NOTICE file distributed with
3251876Speter * this work for additional information regarding copyright ownership.
4251876Speter * The ASF licenses this file to You under the Apache License, Version 2.0
5251876Speter * (the "License"); you may not use this file except in compliance with
6251876Speter * the License.  You may obtain a copy of the License at
7251876Speter *
8251876Speter *     http://www.apache.org/licenses/LICENSE-2.0
9251876Speter *
10251876Speter * Unless required by applicable law or agreed to in writing, software
11251876Speter * distributed under the License is distributed on an "AS IS" BASIS,
12251876Speter * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13251876Speter * See the License for the specific language governing permissions and
14251876Speter * limitations under the License.
15251876Speter */
16251876Speter
17251876Speter#include "apr_buckets.h"
18251876Speter
19251876SpeterAPU_DECLARE_NONSTD(apr_status_t) apr_bucket_setaside_noop(apr_bucket *data,
20251876Speter                                                          apr_pool_t *pool)
21251876Speter{
22251876Speter    return APR_SUCCESS;
23251876Speter}
24251876Speter
25251876SpeterAPU_DECLARE_NONSTD(apr_status_t) apr_bucket_setaside_notimpl(apr_bucket *data,
26251876Speter                                                             apr_pool_t *pool)
27251876Speter{
28251876Speter    return APR_ENOTIMPL;
29251876Speter}
30251876Speter
31251876SpeterAPU_DECLARE_NONSTD(apr_status_t) apr_bucket_split_notimpl(apr_bucket *data,
32251876Speter                                                          apr_size_t point)
33251876Speter{
34251876Speter    return APR_ENOTIMPL;
35251876Speter}
36251876Speter
37251876SpeterAPU_DECLARE_NONSTD(apr_status_t) apr_bucket_copy_notimpl(apr_bucket *e,
38251876Speter                                                         apr_bucket **c)
39251876Speter{
40251876Speter    return APR_ENOTIMPL;
41251876Speter}
42251876Speter
43251876SpeterAPU_DECLARE_NONSTD(void) apr_bucket_destroy_noop(void *data)
44251876Speter{
45251876Speter    return;
46251876Speter}
47