/*D
   MPI_Type_contiguous - Creates a contiguous datatype

Synopsis:
.vb
int MPI_Type_contiguous(int count, MPI_Datatype oldtype, MPI_Datatype *newtype)
.ve
.vb
int MPI_Type_contiguous_c(MPI_Count count, MPI_Datatype oldtype,
                          MPI_Datatype *newtype)
.ve

Input Parameters:
+ count - replication count (non-negative integer)
- oldtype - old datatype (handle)

Output Parameters:
. newtype - new datatype (handle)

.N ThreadSafe

.N Fortran

.N Errors
.N MPI_SUCCESS
.N MPI_ERR_ARG
.N MPI_ERR_COUNT
.N MPI_ERR_TYPE
.N MPI_ERR_OTHER

D*/

