1251881Speter/*
2251881Speter * deprecated.c:  Wrappers to call deprecated functions.
3251881Speter *
4251881Speter * ====================================================================
5251881Speter *    Licensed to the Apache Software Foundation (ASF) under one
6251881Speter *    or more contributor license agreements.  See the NOTICE file
7251881Speter *    distributed with this work for additional information
8251881Speter *    regarding copyright ownership.  The ASF licenses this file
9251881Speter *    to you under the Apache License, Version 2.0 (the
10251881Speter *    "License"); you may not use this file except in compliance
11251881Speter *    with the License.  You may obtain a copy of the License at
12251881Speter *
13251881Speter *      http://www.apache.org/licenses/LICENSE-2.0
14251881Speter *
15251881Speter *    Unless required by applicable law or agreed to in writing,
16251881Speter *    software distributed under the License is distributed on an
17251881Speter *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18251881Speter *    KIND, either express or implied.  See the License for the
19251881Speter *    specific language governing permissions and limitations
20251881Speter *    under the License.
21251881Speter * ====================================================================
22251881Speter */
23251881Speter
24251881Speter#define SVN_DEPRECATED
25251881Speter#include "cl.h"
26251881Speter#include "svn_client.h"
27251881Speter
28251881Spetersvn_error_t *
29251881Spetersvn_cl__deprecated_merge_reintegrate(const char *source_path_or_url,
30251881Speter                                     const svn_opt_revision_t *src_peg_revision,
31251881Speter                                     const char *target_wcpath,
32251881Speter                                     svn_boolean_t dry_run,
33251881Speter                                     const apr_array_header_t *merge_options,
34251881Speter                                     svn_client_ctx_t *ctx,
35251881Speter                                     apr_pool_t *pool)
36251881Speter{
37251881Speter  SVN_ERR(svn_client_merge_reintegrate(source_path_or_url, src_peg_revision,
38251881Speter                                       target_wcpath, dry_run, merge_options,
39251881Speter                                       ctx, pool));
40251881Speter  return SVN_NO_ERROR;
41251881Speter}
42